

:root {
    --font-family: "Source Sans Pro";
    --font-size: 16px;
    --font-weight: 400;
    --font-style: normal;
    --line-height: 1.625;
    --heading-font-family: "Montserrat";
    --heading-font-size: 2.5rem;
    --heading-line-height: 1.3;
    --heading-font-weight: 700;
    --accent-color: #186ADC;
    --el-gradient-start: #1859B4;
    --el-gradient-end: #0467F1;
    --background-color: #ffffff;
    --background-secondary-color: #F0F4F8;
    --text-primary: #303036;
    --text-secondary: #63636b;
    --border-color: #D4D4E1;
    --placeholder-color: #6F6F76;
    --error-color: #ff3d0d;
    --alert-primary: #0065D1;
    --alert-success: #1CAB55;
    --alert-danger: #E91C1C;
    --alert-warning: #C79C00;
    --el-border-radius: 10px;
    --el-border-radius-min: 6px;
    --el-box-shadow: 2px 4px 20px 1px rgba(45, 45, 45, 0.13);
    --header-box-shadow: 0px 0px 14px 0px rgba(77, 82, 94, 0.15);
}

/* === CSS Table Of Content

/* 1.1 Fonts */
@font-face {
    font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/source-sans-pro-v21-latin/source-sans-pro-v21-latin-regular.woff2") format("woff2");
}

@font-face {
    font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/source-sans-pro-v21-latin/source-sans-pro-v21-latin-700.woff2") format("woff2");
}

@font-face {
    font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/montserrat-v25-latin/montserrat-v25-latin-600.woff2") format("woff2");
}

@font-face {
    font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/montserrat-v25-latin/montserrat-v25-latin-700.woff2") format("woff2");
}

@font-face {
    font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/material-icons/material-icons.woff2") format("woff2");
}

@font-face {
    font-family: "Material Icons Outlined";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/material-icons/material-icons-outlined.woff2") format("woff2");
}

/* 1.2 Base */
* {
    box-sizing: border-box;
}

*:before, *:after {
    box-sizing: border-box;
}

html {
    font-size: var(--font-size);
}

html, body {
    min-height: 100%;
}

body {
    font-size: 1rem;
    width: 100%;
    min-width: 320px;
    line-height: var(--line-height);
    font-family: var(--font-family);
    font-weight: var(--font-weight);
    font-style: var(--font-style);
    overflow-x: hidden;
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    opacity: 1;
    background-color: var(--background-color);
}

body.overflow-hidden {
    overflow: hidden;
}

.main {
    position: relative;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    height: 100%;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    opacity: 1;
    box-shadow: var(--el-box-shadow);
    visibility: hidden;
    opacity: 0;
}

.main.main-visible {
    visibility: visible;
    opacity: 1;
}

.main-inner {
    flex: 1 0 auto;
    overflow: hidden;
}

.footer {
    flex: 0 0 auto;
}

header ul, header ol, footer ul, footer ol, aside ul, aside ol, nav ul, nav ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    color: var(--accent-color);
    text-decoration: underline;
    transition: all 0.2s;
}

a:hover {
    text-decoration: none;
    color: var(--accent-color);
}

code {
    font-size: 87.5%;
    color: #e83e8c;
    word-break: break-word;
}

/* 1.3 Tables */
table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

table.table-border {
    border: 1px solid var(--border-color);
}

table.table-border td {
    border-right: 1px solid var(--border-color);
}

table.table-secondary tr:nth-child(even) {
    background-color: transparent;
}

table.table-secondary tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s;
}

table.table-secondary tbody tr:first-child {
    border-top: 1px solid var(--border-color);
}

table.table-secondary tbody tr:hover {
    background-color: var(--background-secondary-color);
}

table.table-bordered tr:nth-child(even) {
    background-color: transparent;
}

table.table-bordered td {
    border: 1px solid var(--border-color);
}

table.table-bordered thead tr th {
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

table td, table th {
    padding: 1rem;
}

table tr:nth-child(even) {
    background-color: var(--background-secondary-color);
}

table thead tr {
    border-bottom: 1px solid var(--border-color);
}

table thead tr th {
    font-weight: bold;
    font-size: 1rem;
}

table tfoot {
    font-weight: 600;
}

@media only screen and (max-width: 767.98px), only screen and (min-width: 567px) and (max-width: 900px) and (orientation: landscape) {
    .table-responsive {
        position: relative;
        width: 100%;
        overflow-y: auto;
    }

    .table-responsive table {
        width: 650px;
    }

    .table-responsive-outer {
        position: relative;
    }

    .table-responsive-outer::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 0.625rem;
        height: 100%;
        background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.3), #fff);
    }

    .table-container::-webkit-scrollbar {
        -webkit-appearance: none;
        width: 0.875rem;
        height: 0.875rem;
    }

    .table-container::-webkit-scrollbar-thumb {
        border-radius: var(--el-border-radius);
        border: 3px solid #fff;
        background-color: rgba(0, 0, 0, 0.3);
    }
}

/* 1.4 Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font-family);
    font-weight: var(--heading-font-weight);
    line-height: var(--heading-line-height);
    padding: 0;
    margin: 0 0 2rem 0;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1.125rem;
}

p {
    margin: 0 0 2rem 0;
}

hr {
    border: none;
    border-top: 1px solid var(--border-color);
}

mark {
    padding: .2em;
    background-color: var(--accent-color);
    color: var(--background-color);
}

small {
    font-size: 0.85rem;
}

blockquote {
    padding: 0 0 0 1.25em;
    margin: 0;
    font-style: italic;
    color: var(--text-secondary);
    border-left: 3px solid var(--accent-color);
}

blockquote p {
    margin-bottom: 0 !important;
}

blockquote footer {
    color: var(--accent-color);
    font-style: normal;
    padding-top: 0.8em;
}

.content h2, .content h3, .content h4, .content h5, .content h6,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-top: 2.5rem;
}

.content h2:first-child, .content h3:first-child, .content h4:first-child, .content h5:first-child, .content h6:first-child,
  .entry-content h2:first-child,
  .entry-content h3:first-child,
  .entry-content h4:first-child,
  .entry-content h5:first-child,
  .entry-content h6:first-child {
    margin-top: 0;
}

.content ul, .content ol,
.entry-content ul,
.entry-content ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.content ul li, .content ol li,
  .entry-content ul li,
  .entry-content ol li {
    position: relative;
    margin-bottom: 0.625rem;
    padding-left: 1.75rem;
}

.content ul li::before, .content ol li::before,
    .entry-content ul li::before,
    .entry-content ol li::before {
    position: absolute;
    left: 0;
    display: inline-flex;
    color: var(--accent-color);
    line-height: var(--line-height);
    min-width: 1.25rem;
    margin-right: 0.5rem;
}

.content ul li::before,
.entry-content ul li::before {
    content: "\e5ca";
    top: -0.125rem;
    font-family: 'Material Icons';
    font-size: 1.125rem;
    height: calc(1rem * var(--line-height));
    min-width: 1.5rem;
}

.content ul li > *,
.entry-content ul li > * {
    display: inline-flex;
}

.content ol,
.entry-content ol {
    counter-reset: item;
}

.content ol li::before,
  .entry-content ol li::before {
    content: counter(item) ".";
    counter-increment: item;
}

.content img,
.entry-content img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: var(--el-border-radius);
}

.content > *,
.entry-content > * {
    margin-bottom: 2rem !important;
}

.content > *:last-child,
  .entry-content > *:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 767.98px), only screen and (min-width: 567px) and (max-width: 900px) and (orientation: landscape) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    h5 {
        font-size: 1.125rem;
    }
}

/* 2 General */
.litems {
    margin-bottom: calc(0px - (var(--bs-gutter-x) + var(--bs-gutter-x)/2 ));
}

.litem {
    margin-bottom: calc(var(--bs-gutter-x) + var(--bs-gutter-x)/2);
}

.items {
    margin-bottom: calc(0px - var(--bs-gutter-x));
}

.item {
    margin-bottom: var(--bs-gutter-x);
}

.item-style {
    position: relative;
    background-color: var(--background-color);
    border-radius: var(--el-border-radius);
    overflow: hidden;
    color: var(--text-primary);
    height: 100%;
    transition: box-shadow 0.2s;
}

.item-style:hover {
    box-shadow: var(--el-box-shadow);
}

.item-style:hover::after {
    border-color: transparent;
}

.item-style::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--el-border-radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
    pointer-events: none;
    transition: border-color 0.2s;
    z-index: 1;
}

.item-border-radius {
    border-radius: var(--el-border-radius);
    overflow: hidden;
}

.item-bordered {
    border: 1px solid var(--border-color);
}

.el {
    --el-custom-size: 100%;
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
}

.el::after {
    content: "";
    float: left;
    margin-top: 100%;
}

.el.el-3x4::after {
    margin-top: 133.33333%;
}

.el.el-4x3::after {
    margin-top: 75%;
}

.el.el-4x5::after {
    margin-top: 125%;
}

.el.el-5x4::after {
    margin-top: 80%;
}

.el.el-16x9::after {
    margin-top: 56.25%;
}

.el.el-9x16::after {
    margin-top: 177.7777%;
}

.el.el-2x1::after {
    margin-top: 50%;
}

.el.el-custom::after {
    margin-top: var(--el-custom-size);
}

.el-absolute {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.item-wide {
    height: 33.75rem;
}

.img-style {
    border-radius: var(--el-border-radius);
    overflow: hidden;
}

.img-style img {
    margin: 0;
}

.img-style-min {
    border-radius: calc(var(--el-border-radius) * 0.6);
}

.img-cover {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.item-heading,
.item-heading-middle,
.item-heading-large {
    font-family: var(--heading-font-family);
    font-size: 1.125rem;
    font-weight: var(--heading-font-weight);
}

.item-heading a,
  .item-heading-middle a,
  .item-heading-large a {
    text-decoration: none;
    color: var(--text-primary);
}

.item-heading a:hover,
    .item-heading-middle a:hover,
    .item-heading-large a:hover {
    color: var(--accent-color);
}

.item-heading-middle {
    font-size: 1.25rem;
}

.item-heading-large {
    font-size: 1.5rem;
}

.widget-heading {
    margin-bottom: 1.25rem;
}

.item-border-radius {
    border-radius: var(--el-border-radius);
    overflow: hidden;
}

.item-text-row {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.item-text-row-2 {
    display: -webkit-box;
    display: box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
}

.item-text-row-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.content-items {
    margin-bottom: -3.5rem;
}

.content-item {
    margin-bottom: 3.5rem;
}

.el-ripple {
    --ripple-width: 100%;
    --ripple-time: 0.4s;
    position: relative;
    overflow: hidden;
    transition: all var(--ripple-time);
}

.el-ripple .el-ripple-circle {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--el-gradient-start);
    transform: translate(-50%, -50%);
    transition: width var(--ripple-time), padding-top var(--ripple-time);
    z-index: 0;
}

.el-ripple span, .el-ripple div, .el-ripple i {
    position: relative;
    z-index: 1;
}

.el-ripple:hover {
    color: var(--background-color);
}

.el-ripple:hover .el-ripple-circle {
    width: calc(var(--ripple-width) * 3);
    padding-top: calc(var(--ripple-width) * 3);
}

.list-style-none {
    list-style: none;
    padding: 0;
    margin: 0;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

.text-secondary {
    color: var(--text-secondary);
}

.d-flex {
    display: flex;
    flex-wrap: wrap;
}

.gutters-default {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
}

.gutters-default > .col,
  .gutters-default > [class*="col-"] {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
}

.gutters-20 {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
}

.gutters-20 > .col,
  .gutters-20 > [class*="col-"] {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
}

.gutters-10 {
    margin-right: -0.3125rem;
    margin-left: -0.3125rem;
}

.gutters-10 > .col,
  .gutters-10 > [class*="col-"] {
    padding-right: 0.3125rem;
    padding-left: 0.3125rem;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.bff {
    display: block;
    padding: 1rem 0;
    background: linear-gradient(to right, var(--el-gradient-start) 0%, var(--el-gradient-end) 100%);
    color: var(--background-color);
    text-decoration: none;
}

.bff:hover {
    color: var(--background-color);
}

.bff-container {
    text-align: center;
}

.bff-container p {
    font-family: var(--heading-font-family);
    font-size: 1.125rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    text-transform: uppercase;
}

.bff-container .btn.btn-border {
    color: var(--background-color);
    fill: var(--background-color);
}

.bff-container .btn.btn-border::before {
    border-color: var(--background-color);
}

/* === 3. Components === */
/* 3.1 Accordion */
.accordion {
    color: var(--text-secondary);
}

.accordion.accordion-clear {
    margin-bottom: -1rem;
}

.accordion-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.section-bgc .accordion-item {
    background-color: var(--background-color);
}

.accordion-item {
    display: block;
    border-radius: var(--el-border-radius);
    background-color: var(--background-secondary-color);
    overflow: hidden;
    margin-bottom: 1rem;
}

.accordion-item.active .accordion-trigger::before {
    transform: rotate(0);
}

.accordion-trigger {
    position: relative;
    cursor: pointer;
    padding: 1.25rem 3.125rem 1.25rem 1.25rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.accordion-trigger::after, .accordion-trigger::before {
    content: "";
    position: absolute;
    right: 1.25rem;
    top: 50%;
    width: 0.875rem;
    height: 2px;
    background-color: var(--accent-color);
    margin-top: -1px;
    transition: all 0.3s;
}

.accordion-trigger::before {
    transform: rotate(90deg);
}

.accordion-content {
    display: none;
    padding: 1.25rem;
    border-top: 1px solid var(--border-color);
}

/* 3.2 Breadcrumb */
.bread-crumbs {
    position: relative;
    padding: 0.5rem 0;
    background-color: var(--background-secondary-color);
}

.bread-crumbs-list {
    position: relative;
    display: flex;
    font-size: 1rem;
    overflow: hidden;
    color: var(--accent-color);
}

.bread-crumbs-list li {
    position: relative;
    margin-right: 2rem;
    white-space: nowrap;
}

.bread-crumbs-list li:last-child {
    margin-right: 0;
}

.bread-crumbs-list li:last-child i {
    display: none;
}

.bread-crumbs-list li:last-child a {
    color: var(--accent-color);
    text-decoration: none;
    pointer-events: none;
}

.bread-crumbs-list li a {
    text-decoration: none;
    color: var(--text-secondary);
}

.bread-crumbs-list li a:hover {
    text-decoration: underline;
}

.bread-crumbs-list li i {
    position: absolute;
    top: 50%;
    right: -1.5625rem;
    margin-top: -0.5625rem;
}

/* 3.3 Buttons */
.btn-group {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 0 0 -1.25rem -1.25rem;
}

.btn-group > * {
    display: block;
    margin: 0 0 1.25rem 1.25rem;
}

.btn {
    --ripple-width: 100%;
    --ripple-time: 0.4s;
    position: relative;
    display: inline-block;
    text-align: center;
    font-size: 1rem;
    font-weight: var(--font-weight);
    font-family: var(--font-family);
    line-height: var(--line-height);
    color: var(--background-color);
    fill: var(--background-color);
    background: var(--el-gradient-end);
    background: linear-gradient(to right, var(--el-gradient-start) 0%, var(--el-gradient-end) 100%);
    text-decoration: none;
    padding: 0.75em 1.75em;
    border-radius: var(--el-border-radius-min);
    outline: none;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: color var(--ripple-time), fill var(--ripple-time);
}

.btn > i, .btn > span, .btn > svg, .btn > img {
    position: relative;
    z-index: 1;
}

.btn > img {
    width: 1.375rem;
    height: 1.375rem;
}

.btn .el-ripple-circle {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--el-gradient-start);
    transform: translate(-50%, -50%);
    transition: width var(--ripple-time), padding-top var(--ripple-time);
    z-index: 0;
}

.btn.btn-w240 {
    min-width: 15rem;
}

.btn.btn-wide {
    display: block;
    width: 100%;
}

.btn.btn-small {
    font-size: 0.875rem;
}

.btn.btn-small.btn-with-icon > svg {
    width: 0.8125rem;
    min-width: 0.8125rem;
    height: 0.8125rem;
}

.btn.btn-small > img {
    width: 1.25rem;
    height: 1.25rem;
}

.btn.btn-border {
    background: transparent;
    color: var(--text-primary);
    fill: var(--text-primary);
}

.btn.btn-border:hover {
    background: none;
    color: var(--background-color);
}

.btn.btn-border::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--text-primary);
    border-radius: var(--el-border-radius-min);
    overflow: hidden;
}

.btn.btn-border .el-ripple-circle {
    background: var(--text-primary);
}

.btn.btn-with-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn.btn-with-icon > svg {
    width: 0.875rem;
    height: 0.875rem;
}

.btn.btn-with-icon .btn-icon-right {
    margin-left: 0.5rem;
}

.btn.btn-with-icon .btn-icon-left {
    margin-right: 0.5rem;
}

.btn:focus {
    outline: none;
}

.btn:hover {
    color: var(--background-color);
    fill: var(--background-color);
}

.btn:hover .el-ripple-circle {
    width: calc(var(--ripple-width) * 2.5);
    padding-top: calc(var(--ripple-width) * 2.5);
}

.ripple {
    position: relative;
    overflow: hidden;
}

.ripple-effect {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0.25rem;
    height: 0.25rem;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: ripple 1s ease forwards;
    z-index: 3;
}

@keyframes ripple {
    0% {
        transform: none;
    }

    100% {
        transform: scale(250);
    }
}

.hl-list li.active > .hover-link {
    pointer-events: none;
}

.hl-list li.active > .hover-link > span {
    transform: translateY(100%);
}

.hl-list li.active > .hover-link::after {
    transform: translateY(0);
}

.hl-list li.open > .hover-link > span {
    transform: translateY(100%);
}

.hl-list li.open > .hover-link::after {
    transform: translateY(0);
}

.hover-link {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: var(--text-primary);
}

.hover-link::after {
    content: attr(data-title);
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    transform: translateY(-100%);
    transition: all 0.4s;
    color: var(--accent-color);
}

.hover-link > span {
    display: block;
    transform: translateY(0);
    transition: all 0.4s;
}

.hover-link:hover > span, .hover-link.active > span {
    transform: translateY(100%);
}

.hover-link:hover::after, .hover-link.active::after {
    transform: translateY(0);
}

.btn-top {
    position: fixed;
    right: 15px;
    bottom: -5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    border-radius: var(--el-border-radius-min);
    border: 1px solid var(--border-color);
    background: var(--background-color);
    z-index: 98;
    fill: var(--accent-color);
    transition: all 0.2s;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
}

.btn-top.active {
    opacity: 1;
    visibility: visible;
    bottom: 15px;
}

.btn-top:hover {
    border-color: var(--accent-color);
    fill: var(--accent-color);
}

.btn-top > svg {
    width: 0.875rem;
    height: 0.625rem;
    margin: auto;
    transform: rotate(-90deg);
}

/* 3.4 Forms */
*::-webkit-input-placeholder,
*::placeholder {
    color: var(--placeholder-color);
    opacity: 1;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="url"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime-local"],
input[type="file"],
textarea {
    display: block;
    font-size: 1rem;
    font-family: var(--font-family);
    font-weight: var(--font-weight);
    width: 100%;
    padding: calc(0.75em - 1px) 1rem;
    margin-bottom: 1rem;
    line-height: var(--line-height);
    border-radius: var(--el-border-radius-min);
    border: 1px solid var(--border-color);
    background-color: transparent;
    outline: none;
    color: var(--text-primary);
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: all 0.2s;
}

input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="tel"]:focus,
  input[type="password"]:focus,
  input[type="number"]:focus,
  input[type="search"]:focus,
  input[type="url"]:focus,
  input[type="date"]:focus,
  input[type="month"]:focus,
  input[type="week"]:focus,
  input[type="time"]:focus,
  input[type="datetime-local"]:focus,
  input[type="file"]:focus,
  textarea:focus {
    border-color: var(--accent-color);
}

input[type="text"]:disabled,
  input[type="email"]:disabled,
  input[type="tel"]:disabled,
  input[type="password"]:disabled,
  input[type="number"]:disabled,
  input[type="search"]:disabled,
  input[type="url"]:disabled,
  input[type="date"]:disabled,
  input[type="month"]:disabled,
  input[type="week"]:disabled,
  input[type="time"]:disabled,
  input[type="datetime-local"]:disabled,
  input[type="file"]:disabled,
  textarea:disabled {
    background-color: var(--background-secondary-color);
}

textarea {
    height: auto;
    resize: none;
}

.form-fields {
    margin-bottom: -1.25rem;
}

.form-field {
    position: relative;
    margin-bottom: 1.25rem;
}

.form-field.error input,
  .form-field.error textarea {
    border-color: var(--error-color);
}

.form-field input[type="text"],
  .form-field input[type="email"],
  .form-field input[type="tel"],
  .form-field input[type="password"],
  .form-field input[type="number"],
  .form-field input[type="search"],
  .form-field input[type="url"],
  .form-field input[type="date"],
  .form-field input[type="month"],
  .form-field input[type="week"],
  .form-field input[type="time"],
  .form-field input[type="datetime-local"],
  .form-field input[type="file"],
  .form-field textarea,
  .form-field .form-field-label {
    margin: 0;
}

.form-field.form-field-m0 {
    margin: 0;
}

.form-field.focus .form-field-label {
    opacity: 0;
    visibility: hidden;
    transform: translateX(1rem);
}

.form-field div.error {
    position: absolute;
    right: 0.3125rem;
    top: 0.3125rem;
    color: var(--error-color);
    font-size: 0.75rem;
    line-height: 1;
}

.form-field.form-field-checkbox div.error {
    position: absolute;
    right: initial;
    left: 0;
    top: -0.875rem;
    color: var(--error-color);
    font-size: 0.75rem;
    line-height: 1;
}

.form-field input.error,
  .form-field textarea.error {
    border-color: var(--error-color);
}

.form-field small {
    color: var(--text-secondary);
}

.input-states-labelled {
    display: block;
}

.form-field-group {
    position: relative;
}

.form-field-group.focus .form-field-label {
    opacity: 0;
    visibility: hidden;
    transform: translateX(1rem);
}

.required {
    color: var(--error-color);
}

.form-field-label {
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    pointer-events: none;
    color: var(--placeholder-color);
    padding: calc(0.75em - 1px) 1rem;
    transition: all 0.2s;
    border: 1px solid transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
}

.form-btn {
    display: flex;
}

.form-btn.form-btn-wide .btn {
    width: 100%;
}

.form-btn .btn {
    display: block;
}

/* 3.5 Icons */
.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    font-size: 1rem;
    height: 1rem;
    width: 1rem;
}

.material-icons.material-icons-outlined {
    font-family: 'Material Icons Outlined';
}

.material-icons.md-18 {
    font-size: 1.125rem;
    width: 1.125rem;
    height: 1.125rem;
}

.material-icons.md-20 {
    font-size: 1.25rem;
    width: 1.25rem;
    height: 1.25rem;
}

.material-icons.md-22 {
    font-size: 1.375rem;
    width: 1.375rem;
    height: 1.375rem;
}

.material-icons.md-24 {
    font-size: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
}

.material-icons.md-26 {
    font-size: 1.625rem;
    width: 1.625rem;
    height: 1.625rem;
}

.material-icons.md-28 {
    font-size: 1.75rem;
    width: 1.75rem;
    height: 1.75rem;
}

.material-icons.md-32 {
    font-size: 2rem;
    width: 2rem;
    height: 2rem;
}

.material-icons.md-36 {
    font-size: 2.25rem;
    width: 2.25rem;
    height: 2.25rem;
}

.material-icons.md-40 {
    font-size: 2.5rem;
    width: 2.5rem;
    height: 2.5rem;
}

.material-icons.md-44 {
    font-size: 2.75rem;
    width: 2.75rem;
    height: 2.75rem;
}

.material-icons.md-48 {
    font-size: 3rem;
    width: 3rem;
    height: 3rem;
}

.material-icons.md-60 {
    font-size: 3.75rem;
    width: 3.875rem;
    height: 3.75rem;
}

.material-icons.md-72 {
    font-size: 4.5rem;
    width: 4.5rem;
    height: 4.5rem;
}

/* 3.6 Pagination */
.pagination {
    display: flex;
    justify-content: center;
    padding-top: 0.625rem;
}

.pagination-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    margin-left: -0.625rem;
}

.pagination-list li {
    margin-left: 0.625rem;
}

.pagination-list li:hover a, .pagination-list li:hover span, .pagination-list li.active a, .pagination-list li.active span {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.pagination-list li.active a, .pagination-list li.active span {
    cursor: default;
    pointer-events: none;
}

.pagination-list li.pagination-item-arrow a, .pagination-list li.pagination-item-arrow span {
    color: var(--accent-color);
    border-color: transparent;
    width: 1.5rem;
    height: 1.5rem;
}

.pagination-list li.pagination-item-arrow:hover a, .pagination-list li.pagination-item-arrow:hover span {
    color: var(--text-primary);
}

.pagination-list li.pagination-item-disabled a, .pagination-list li.pagination-item-disabled span {
    color: var(--text-secondary);
    pointer-events: none;
}

.pagination-list li.pagination-item-disabled:hover a, .pagination-list li.pagination-item-disabled:hover span {
    color: var(--text-secondary);
}

.pagination-list li a, .pagination-list li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.1875rem;
    height: 2.1875rem;
    color: var(--text-secondary);
    text-decoration: none;
    border: 1px solid var(--border-color);
    border-radius: var(--el-border-radius-min);
}

.pagination-list li a.dots, .pagination-list li span.dots {
    border-color: transparent;
}

/* 3.7 Tabs */
.tabs {
    position: relative;
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

.tabs-nav li {
    padding: 0.625rem 0;
    margin-right: 2.5rem;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

.tabs-nav li:last-child {
    margin-right: 0;
}

.tabs-nav li::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transform: translateX(-50%);
    transition: all 0.2s;
}

.tabs-nav li.active, .tabs-nav li:hover {
    color: var(--accent-color);
}

.tabs-nav li.active::after, .tabs-nav li:hover::after {
    width: 100%;
}

.tabs-item {
    display: none;
    padding-top: 2rem;
}

.tabs-item.active {
    display: block;
}

.tabs-vertical {
    display: flex;
    align-items: flex-start;
}

.tabs-vertical .tabs-nav {
    display: block;
    border: none;
    width: 16rem;
    min-width: 16rem;
    border-radius: var(--el-border-radius);
    overflow: hidden;
}

.tabs-vertical .tabs-nav li {
    width: 100%;
    margin: 0;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.tabs-vertical .tabs-nav li:last-child {
    border: none;
}

.tabs-vertical .tabs-nav li::after {
    content: none;
}

.tabs-vertical .tabs-nav li:hover {
    color: var(--accent-color);
}

.tabs-vertical .tabs-nav li.active {
    background-color: var(--accent-color);
    color: var(--background-color);
}

.tabs-vertical .tabs-item {
    padding-top: 0;
}

.tabs-vertical .tabs-container {
    padding-left: 2rem;
}

.tabs-container {
    width: 100%;
}

@media (max-width: 991.98px) {
    .tabs-vertical .tabs-nav {
        min-width: 225px;
        width: 225px;
    }
}

@media (max-width: 767.98px) {
    .tabs-vertical {
        flex-wrap: wrap;
    }

    .tabs-vertical .tabs-nav {
        width: 100%;
    }

    .tabs-vertical .tabs-nav li {
        padding: 0.625rem 1rem;
    }

    .tabs-vertical .tabs-container {
        padding-left: 0;
        padding-top: 1.5rem;
    }

    .tabs-item {
        padding-top: 0;
    }

    .tabs-container {
        padding-top: 1.5rem;
    }

    .tabs-nav {
        border: none;
    }

    .tabs-nav li {
        width: 50%;
        margin-right: 0;
        margin-bottom: 0.5rem;
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--border-color);
        line-height: 1.3;
    }
}

@media (min-width: 1200px) {
    .tabs-nav {
        font-size: 1.125rem;
    }
}

/* === 4. Widgets === */
/* 4.1 Brand info */
.widget-brand-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    line-height: 1;
}

.widget-brand-info .logo {
    display: inline-flex;
    opacity: 1;
}

.widget-brand-info .logo img {
    margin: 0;
    width: 100%;
    height: 100%;
}

.widget-brand-info .wbim-socials {
    margin-top: 1.25rem;
}

.widget-brand-info.aligncenter {
    text-align: center;
}

.widget-brand-info.aligncenter .widget-brand-info-main,
    .widget-brand-info.aligncenter .logo {
    margin-left: auto;
    margin-right: auto;
}

.widget-brand-info.aligncenter .widget-socials {
    justify-content: center;
}

.widget-brand-info.alignright {
    text-align: right;
}

.widget-brand-info.alignright .widget-brand-info-main,
    .widget-brand-info.alignright .logo {
    margin-left: auto;
}

.widget-brand-info.alignright .widget-socials {
    justify-content: flex-end;
}

.wbim-p p {
    margin-top: 1.25rem;
}

.widget-brand-info-main {
    max-width: 30rem;
}

.widget-brand-info-main > *:last-child {
    margin-bottom: 0;
}

.widget-brand-info-main p {
    line-height: var(--line-height);
}

/* === 5. Bloks === */
/* 5.1 Intro */
.intro {
    background-image: url('/static/img/new/intro-vokzal.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-bgc.intro {
    background-color: transparent !important;
    background-image: url('/static/img/new/intro-vokzal.webp') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    min-height: 600px !important;
}


@media (max-width: 768px) {
    .intro {
        background-image: url('/static/img/new/intro-vokzal-tablet.webp');
    }
}

@media (max-width: 480px) {
    .intro {
        background-image: url('/static/img/new/intro-vokzal-mobile.webp');
    }
}


.intro {
    position: relative;
    z-index: 1;
}

.intro:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.intro-item {
    display: block;
    min-height: 40rem;
    overflow: hidden;

}

.intro-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 3.5rem 0;
    color: var(--text-primary);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: var(--background-color);
    min-width: 100%;
    width: 100%;
}

.intro-item .container {
    position: relative;
    z-index: 3;
}

.intro-item::after {
    content: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.intro-item .section-subheading {
    font-size: var(--font-size);
}

.intro-item .section-desc {
    font-size: var(--font-size);
    max-width: 100%;
}

.intro-item h1, .intro-item h2, .intro-item h3 {
    font-size: var(--heading-font-size) !important;
}

.intro-item-bgc {
    background-color: var(--background-secondary-color);
}

.intro-content {
    --margin-left: 0;
    --margin-right: 0;
    --max-width: 25rem;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 var(--margin-right) 0 var(--margin-left);
    padding: 0 0 3.75rem 0;
	margin-top: -300px;
}

.intro-content.intro-content-center {
    margin: 0 auto;
    text-align: center;
    padding: 0;
}

.intro-content.intro-content-center .intro-btns {
    justify-content: center;
}

.intro-btns {
    align-items: center;
    margin-top: 1.75rem;
}

@media (max-width: 1199.98px) {
    .intro-item {
        min-height: 35rem;
    }

    .intro-item {
        min-height: 35rem;
    }

    .intro-item::after {
        content: "";
    }

    .intro-item-type-1 {
        color: rgba(255, 255, 255, 0.9);
    }

    .intro-item-type-1 .section-desc {
        color: rgba(255, 255, 255, 0.7);
    }

    .intro-item-type-1 .section-subheading {
        color: rgba(255, 255, 255, 0.8);
    }

    .intro-item-type-1 .btn.btn-border {
        color: rgba(255, 255, 255, 0.9);
        fill: rgba(255, 255, 255, 0.9);
    }

    .intro-item-type-1 .btn.btn-border:hover {
        color: rgba(255, 255, 255, 0.9);
        fill: rgba(255, 255, 255, 0.9);
    }

    .intro-item-type-1 .btn.btn-border::before {
        border-color: rgba(255, 255, 255, 0.9);
    }

    .intro-item-type-1 .btn.btn-border::after {
        background: rgba(255, 255, 255, 0.9);
    }
}

@media (max-width: 991.98px) {
    .intro-content {
        margin: 0 !important;
    }
}

@media (max-width: 768px) {
    .intro-item {
        background-position: center;
        background-size: cover;
        padding: 20px 0;
    }

    .intro-content {
        text-align: center;
        padding: 20px;
    }

    .btn-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .btn-group a {
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 767.98px), only screen and (min-width: 567px) and (max-width: 900px) and (orientation: landscape) {
    .intro-item h1, .intro-item h2, .intro-item h3 {
        font-size: 2rem;
    }

    .intro-content {
        padding-bottom: 0;
        max-width: 380px;
    }

    .intro-item {
        --heading-font-size: 2.25rem!important;
        --font-size: 1rem!important;
    }
}

@media only screen and (min-width: 567px) and (max-width: 900px) and (orientation: landscape) {
    .intro-item {
        height: auto;
        min-height: 25rem;
    }

    .intro-content {
        margin-bottom: 2.5rem;
    }
}

/* 5.2 Icon items */
.iitem {
    display: block;
    text-align: center;
    padding: 1.5rem;
    text-decoration: none;
    transition: box-shadow 0.2s, background-color 0.2s, color 0.2s;
}

.iitem:hover {
    color: var(--text-primary);
}

.iitem.iitem-hover:hover {
    background-color: var(--accent-color);
    color: var(--background-color);
}

.iitem.iitem-hover:hover .iitem-icon {
    background: var(--background-color);
    color: var(--accent-color);
    fill: var(--accent-color);
}

.iitem.iitem-hover:hover .iitem-icon.iii-stroke {
    fill: transparent;
    stroke: var(--accent-color);
}

.iitem.iitem-hover:hover .iitem-icon.iii-fill-stroke {
    stroke: var(--accent-color);
}

.iitem.iitem-hover:hover .iitem-icon-bg {
    opacity: 0.14;
}

.iitem.iitem-hover:hover .iitem-desc {
    color: var(--background-color);
}

.main-visible .iitem-icon {
    transition: background-color 0.2s, color 0.2s, fill 0.2s;
}

.iitem-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    min-width: 6rem;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--accent-color);
    background: linear-gradient(to right, var(--el-gradient-start) 0%, var(--el-gradient-end) 100%);
    margin: 0 auto 1.25rem;
    color: var(--background-color);
    fill: var(--background-color);
    stroke: transparent;
}

.iitem-icon > svg, .iitem-icon img {
    display: block;
    width: 3rem;
    height: 3rem;
}

.iitem-icon > img {
    -o-object-fit: contain;
    object-fit: contain;
}

.iitem-icon.iii-stroke {
    fill: transparent;
    stroke: var(--background-color);
}

.iitem-icon.iii-fill-stroke {
    fill: var(--background-color);
    stroke: var(--background-color);
}

.iitem-icon-bg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 2rem;
    z-index: 1;
    opacity: 0;
    color: var(--background-color);
    fill: var(--background-color);
    stroke: transparent;
    transition: opacity 0.2s 0.1s;
}

.iitem-icon-bg.iii-stroke {
    fill: transparent;
    stroke: var(--background-color);
}

.iitem-icon-bg.iii-fill-stroke {
    fill: var(--background-color);
    stroke: var(--background-color);
}

.iitem-icon-bg i {
    font-size: 31.25rem;
}

.iitem-icon-bg i, .iitem-icon-bg svg {
    width: 31.25rem;
    height: 31.25rem;
}

.iitem-heading {
    margin-bottom: 1rem;
}

.iitem-desc {
    color: var(--text-secondary);
    transition: color 0.2s;
}

.iitem-icon,
.iitem-heading,
.iitem-desc {
    position: relative;
    z-index: 2;
}

@media (max-width: 1199.98px) {
    .iitem {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* 5.3 Items of numbers */
.ini {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.ini-count {
    font-size: 1.0625rem;
    font-family: var(--heading-font-family);
    font-weight: var(--heading-font-weight);
    color: var(--accent-color);
    margin-top: 0.125rem;
    position: relative;
    z-index: 1;
    padding-right: 0.3125rem;
}

.ini-count::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    width: 3.25rem;
    height: 1px;
    background-color: var(--text-primary);
    margin-top: -1px;
}

.ini-info {
    position: relative;
    z-index: 1;
    padding-left: 3.75rem;
}

.ini-heading {
    margin-bottom: 1.25rem;
}

.ini-desc {
    color: var(--text-secondary);
}

.ini-desc p {
    margin: 0;
}

@media (max-width: 1199.98px) {
    .ini-info {
        padding-left: 2.5rem;
    }

    .ini-count::after {
        width: 2rem;
    }
}

@media (max-width: 991.98px) {
    .ini-info {
        padding-left: 2.75rem;
    }

    .ini-count::after {
        width: 2.25rem;
    }
}

@media only screen and (max-width: 767.98px), only screen and (min-width: 567px) and (max-width: 900px) and (orientation: landscape) {
    .ini-heading {
        min-height: auto;
    }

    .ini-heading br {
        display: none;
    }

    .ini-count {
        margin-top: 0;
    }
}

@media (max-width: 575.98px) {
    .ini-info {
        padding-left: 3rem;
    }

    .ini-count::after {
        width: 42px;
    }
}

/* 5.4 Counters */
.counter-min {
    position: relative;
    height: 6.875rem;
    padding-left: 1.875rem;
}

.counter-min-block {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 4.625rem;
    width: 7.5rem;
    border-radius: var(--el-border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-color);
    background: var(--accent-color);
    background: linear-gradient(to right, var(--el-gradient-start) 0%, var(--el-gradient-end) 100%);
}

.counter-min-ico {
    line-height: 1;
    margin-right: 0.625rem;
}

.section-bgc .counter-min-info {
    background-color: var(--background-color);
}

.counter-min-info {
    padding-left: 6.625rem;
    height: 100%;
    display: flex;
    border-radius: var(--el-border-radius);
    background-color: var(--background-secondary-color);
    align-items: center;
    padding-right: 0.625rem;
}

.counter-min-info .counter-min-heading {
    margin-bottom: 0;
    font-size: 1.125rem;
}

.counter-min-numb {
    font-size: 2.1875rem;
    font-family: var(--heading-font-family);
    font-weight: var(--heading-font-weight);
}

/* 5.5 Reviews */
.reviews-item {
    position: relative;
    padding: 2rem 1.25rem;
}

.reviews-item-info {
    padding-top: 0.625rem;
}

.reviews-item-text {
    color: var(--text-secondary);
}

.reviews-item-text p {
    margin-bottom: 0;
}

.reviews-item-name {
    margin-bottom: 0.125rem;
    font-size: 1.125rem;
}

.reviews-item-header {
    display: flex;
    margin-bottom: 1.5rem;
}

.reviews-item-position {
    color: var(--text-secondary);
    font-size: 1rem;
}

.reviews-item-img {
    width: 4.6875rem;
    height: 4.6875rem;
    min-width: 4.6875rem;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1.25rem;
    background-color: var(--background-secondary-color);
}

.reviews-item-img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* 5.6 News */
.news-item {
    position: relative;
}

.news-item-img {
    position: relative;
    display: block;
    background-color: var(--background-secondary-color);
}

.news-item-img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.news-item-info {
    position: relative;
    padding: 2.1875rem 1.25rem 1.25rem;
}

.news-item-date {
    position: absolute;
    left: 50%;
    top: -1.125rem;
    height: 2.25rem;
    line-height: 2.25rem;
    padding: 0 0.625rem;
    background-color: var(--accent-color);
    color: var(--background-color);
    font-size: 0.8125rem;
    border-radius: var(--el-border-radius-min);
    transform: translateX(-50%);
}

.news-item-heading {
    margin-bottom: 0.625rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 1.125rem;
}

.news-item-heading.news-item-heading-center {
    text-align: center;
}

.news-item-desc {
    color: var(--text-secondary);
}

.news-item-desc p {
    margin-bottom: 0;
}

.news-post-header {
    margin-bottom: 2rem;
}

.news-post-title {
    margin-bottom: 1rem;
}

.news-post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: -1rem;
    margin-left: -1.25rem;
}

.news-post-meta-item {
    display: flex;
    align-items: center;
    margin-left: 1.25rem;
    margin-bottom: 1rem;
}

.news-post-meta-item i {
    margin-right: 0.625rem;
    color: var(--accent-color);
}

.news-post-meta-item a {
    text-decoration: none;
}

.news-post-meta-item a:hover {
    text-decoration: underline;
}

.news-post-img {
    margin-top: 1.25rem;
}

.news-post-img img {
    width: 100%;
}

.news-post-footer {
    margin-top: 2rem;
    padding-top: 0.625rem;
    border-top: 1px solid var(--border-color);
}

.news-post-cat {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -0.625rem;
    margin-left: -1rem;
    font-size: 1rem;
}

.news-post-cat li {
    margin-bottom: 0.625rem;
    margin-left: 1rem;
}

.news-post-cat li a {
    display: block;
    text-decoration: none;
}

.news-post-cat li a:hover {
    text-decoration: underline;
}

.news-post-share {
    display: flex;
    align-items: center;
}

.news-post-share-title {
    margin-right: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.author {
    display: flex;
    align-items: center;
    text-align: left;
}

.author-info .author-name {
    margin-bottom: 0.25rem;
}

.author-info .author-date {
    color: var(--text-secondary);
}

.author-img {
    position: relative;
    width: 4.6875rem;
    height: 4.6875rem;
    margin-right: 1.25rem;
}

.author-img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 1199.98px) {
    .news-item-info {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media only screen and (max-width: 767.98px), only screen and (min-width: 567px) and (max-width: 900px) and (orientation: landscape) {
    .news-item {
        max-width: 21.875rem;
        margin: 0 auto;
    }

    .news-nav {
        padding-top: 0;
    }

    .news-item-desc {
        height: auto;
    }

    .news-post-footer {
        padding-top: 1.25rem;
    }
}

/* 5.7 Brands */
.brands-carusel .flickity-slider {
    display: flex;
    align-items: center;
}

.brands-item {
    position: relative;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 9.5rem;
}

.brands-item.item-style {
    height: 9.5rem;
}

.brands-item img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
}

.brands-min {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    max-width: 7.5rem;
    margin: 0 auto;
}

.brands-min img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
}

@media only screen and (min-width: 480px) {
    .brands-item {
        height: 12rem;
    }

    .brands-item.item-style {
        height: 12rem;
    }

    .brands-min {
        max-width: 10rem;
    }
}

/* 5.8 Contacts */
.contact-info {
    position: relative;
    padding: 2rem 1.25rem;
    background-color: var(--background-secondary-color);
    border-radius: var(--el-border-radius);
    height: 100%;
}

.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    color: var(--text-secondary);
}

.contact-list li {
    display: flex;
    margin-bottom: 1.625rem;
    line-height: 1.375rem;
}

.contact-list li:last-child {
    margin-bottom: 0;
}

.contact-list li .material-icons {
    margin-right: 0.625rem;
    color: var(--accent-color);
}

.contact-list li a {
    text-decoration: none;
    display: block;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.contact-list li a:last-child {
    margin-bottom: 0;
}

.contact-list li a:hover {
    color: var(--accent-color);
}

.contact-list i {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-list i.footer-contact-tel {
    font-size: 1.25rem;
}

.contact-list i.footer-contact-email {
    font-size: 1.125rem;
}

.contact-list .footer-contact-info {
    opacity: 1;
}

.footer-contact-info h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-contact-info p {
    margin-bottom: 0.25rem;
}

.footer-contact-info p:last-child {
    margin-bottom: 0;
}

.contact-form-padding {
    padding-left: 2rem;
}

.map {
    position: relative;
}

.map iframe {
    width: 100%;
    height: 100%;
    min-height: 20rem;
    border: none;
}

@media (min-width: 768px) {
    .map {
        display: flex;
        align-items: center;
        min-height: 35rem;
    }

    .map iframe {
        position: absolute;
        left: 0;
        top: 0;
        min-height: auto;
    }
}

@media (max-width: 1199.98px) {
    .contact-form-padding {
        padding-left: 0;
    }
}

@media only screen and (min-width: 567px) and (max-width: 900px) and (orientation: landscape) {
    .map,
  #map_canvas {
        min-height: 20rem;
    }

    .map iframe,
    #map_canvas iframe {
        min-height: 20rem;
    }

    .map {
        display: block;
        min-height: 20rem;
    }

    .map iframe {
        position: relative;
        left: 0;
        top: 0;
    }
}

/* === 6. Layouts === */
/* 6.1 Header */
.header {
    position: relative;
    width: 100%;
}

.header.fixed {
    position: fixed;
    z-index: 101;
}

.header.header-clear {
    padding: 1rem 0;
}

.header-fixed {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0.75rem 0;
    background-color: var(--background-color);
    font-size: 1rem;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    z-index: 101;
    box-shadow: var(--header-box-shadow);
}

.header-fixed.fixed {
    position: fixed;
}

.header-fixed .col-static {
    position: static;
}

.header-fixed .container {
    position: relative;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-wide {
    min-width: 16rem;
}

.logo {
    --logo-max-width: 133px;
    --logo-max-height: 36px;
    display: inline-flex;
    text-decoration: none;
}

.logo img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: var(--logo-max-height);
    max-width: var(--logo-max-width);
}

.logo svg {
    display: block;
}

.logo-text {
    font-family: var(--heading-font-family);
    font-size: 1.125rem;
    font-weight: var(--heading-font-weight);
    line-height: var(--heading-line-height);
    text-decoration: none;
    color: var(--text-primary);
}

body.mmm-open {
    overflow: hidden;
}

body.mmm-open .header-fixed {
    box-shadow: var(--header-box-shadow);
}

body.mmm-open .mmm {
    transform: none;
}

.mmm {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    max-width: 20rem;
    background-color: var(--background-color);
    z-index: 100;
    box-shadow: var(--header-box-shadow);
    transform: translateX(-150%);
    overflow: hidden;
    overflow-y: auto;
    transition: transform 0.6s;
}

.mf-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    z-index: 99;
    opacity: 0;
    cursor: pointer;
    visibility: hidden;
    transition: opacity 0.4s;
}

.mf-bg::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.mf-bg.visible {
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 100%;
}

.mf-bg.side-visible {
    z-index: 1110;
}

.mmm-content {
    background-color: var(--background-secondary-color);
}

.mmm-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: var(--font-size);
}

.mmm-list > li {
    position: relative;
    border-bottom: 1px solid var(--background-color);
}

.mmm-list > li > a {
    display: block;
    color: var(--text-primary);
    text-decoration: none;
    width: 100%;
    padding: 0 3.75rem 0 1.25rem;
    height: 3.125rem;
    line-height: 3.125rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.mmm-list > li.active > a {
    background-color: var(--accent-color);
    color: var(--background-color);
}

.tablet .main-mnu-list > li.menu-item-has-children > a, .mobile .main-mnu-list > li.menu-item-has-children > a {
    pointer-events: none;
}

.main-mnu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.main-mnu-list {
    display: inline-flex;
    margin-left: -1.5rem;
}

.main-mnu-list.hide {
    display: none;
}

.main-mnu-list > li {
    position: relative;
    margin-left: 1.5rem;
    padding: 1rem 0;
}

.main-mnu-list > li:hover > a > span, .main-mnu-list > li.active > a > span {
    transform: translateY(100%);
}

.main-mnu-list > li:hover > a::after, .main-mnu-list > li.active > a::after {
    transform: none;
}

.main-mnu-list > li > a {
    font-size: 0.9375rem;
    overflow: hidden;
    white-space: nowrap;
}

.main-mnu-list > li > a::after {
    content: attr(data-title);
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-100%);
    width: 100%;
    white-space: nowrap;
    transition: all 0.4s;
    color: var(--accent-color);
}

.main-mnu-list > li > a > span {
    display: block;
    transform: translateY(0);
    transition: all 0.4s;
}

.main-mnu-list > li a {
    color: var(--text-primary);
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1rem;
}

.main-mnu-btn {
    position: relative;
    display: block;
    width: 24px;
    height: 18px;
    overflow: hidden;
}

.main-mnu-btn .bar {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.4s ease-in-out;
}

.main-mnu-btn .bar-1 {
    top: 0;
}

.main-mnu-btn .bar-2,
  .main-mnu-btn .bar-3 {
    top: 8px;
}

.main-mnu-btn .bar-3 {
    right: 0;
}

.main-mnu-btn .bar-4 {
    bottom: 0;
}

.main-mnu-btn.active .bar-1 {
    transform: translateX(40px);
    background-color: transparent;
}

.main-mnu-btn.active .bar-2 {
    transform: rotate(45deg);
}

.main-mnu-btn.active .bar-3 {
    transform: rotate(-45deg);
}

.main-mnu-btn.active .bar-4 {
    transform: translateX(-40px);
    background-color: transparent;
}

.side {
    position: fixed;
    top: 0;
    width: 20rem;
    height: 100%;
    background: var(--background-color);
    z-index: 1111;
    transition: all 0.4s;
}

.side.side-right {
    right: 0;
    transform: translateX(20rem);
}

.side.open {
    transform: none;
}

.side-scroll {
    padding: 1rem 1.5rem 1.25rem;
    width: 100%;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
}

.side-close {
    position: absolute;
    right: 1rem;
    top: 1.25rem;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 2;
}

.side-close:hover {
    transform: rotate(90deg);
    color: var(--accent-color);
}

.side-login {
    margin-top: 2rem;
    margin-bottom: 1.25rem;
}

.side-form-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.side-form-nav {
    margin-top: 1.25rem;
    text-align: center;
}

.sfn-row {
    margin-bottom: 1rem;
}

.sfn-row:last-child {
    margin-bottom: 0;
}

@media only screen and (max-height: 750px) {
    .side-form .input-states-labelled {
        display: none;
    }
}

/* 6.2 Section */
.section {
    position: relative;
    padding: 4.5rem 0;
    background-color: var(--background-color);
    color: var(--text-primary);
}

.section.section-without-padding {
    padding: 0;
}

.section.section-without-padding-top {
    padding-top: 0;
}

.section.section-without-padding-bottom {
    padding-bottom: 0;
}

.section.section-minimal-padding {
    padding: 30px 0;
}

.section.section-container-fluid-without-padding .container-fluid {
    padding: 0;
}

.page-sections {
    padding-top: 3.5rem;
}

.page-sections .section {
    padding: 0;
    margin-bottom: 3.5rem;
}

.page-sections .section:last-child {
    margin-bottom: 0;
}

.section-overflow-hidden {
    overflow: hidden;
}

.section-bgc {
    background-color: var(--background-secondary-color);
}

.section-header-margin-none .section-heading {
    margin: 0;
}

.section-heading {
    margin-bottom: 3.25rem;
    max-width: 850px;
}

.section-heading h1, .section-heading h2, .section-heading h3 {
    position: relative;
    font-size: 2.5rem;
    margin: 0;
}

.section-heading.shm-none {
    margin-bottom: 0;
}

.section-heading .btn-group {
    margin-top: 2rem;
}

.heading-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.heading-center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

.heading-right {
    text-align: right;
    margin-left: auto;
}

.heading-right .section-desc {
    margin-left: auto;
}

.section-subheading {
    margin-bottom: 0.3125rem;
    text-transform: uppercase;
    color: var(--accent-color);
}

.section-desc {
    margin: 1.25rem 0;
    max-width: 30rem;
    color: var(--text-secondary);
}

.section-footer {
    margin-top: 1rem;
}

.section-footer .content {
    margin-bottom: 1.25rem;
    max-width: 30rem;
}

.section-footer .content.text-center {
    margin-left: auto;
    margin-right: auto;
}

.section-footer .content.text-right {
    margin-left: auto;
}

.section-footer .content.content-no-margin {
    margin-bottom: 0;
}

.section-footer.section-footer-mt-1 {
    margin-top: -0.75rem;
}

.main-content .container .container {
    padding: 0;
}

/* 6.3 Footer */
.footer {
    position: relative;
    background-color: var(--text-primary);
    width: 100%;
    color: var(--background-color);
    font-size: 1rem;
}

.footer p, .footer i {
    opacity: 0.8;
}

.footer a {
    opacity: 0.8;
    color: var(--background-color);
    text-decoration: none;
}

.footer a:hover {
    color: var(--background-color);
    opacity: 1;
}

.footer a::after {
    color: var(--background-color);
}

.mobile .footer, .tablet .footer {
    z-index: 1 !important;
    position: relative !important;
}

.mobile .main-inner, .tablet .main-inner {
    margin-bottom: 0 !important;
}

.footer-minimal .footer-main {
    padding: 2.5rem 0;
}

.footer-minimal .footer-company-info .logo {
    margin-bottom: 0;
}

.footer-main {
    position: relative;
    padding: 4rem 0;
}

.footer-main::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background-color: var(--background-color);
    opacity: 0.1;
}

.footer-main > .container > .items {
    margin-bottom: -2.5rem;
}

.footer-main .footer-widget {
    margin-bottom: 2.5rem;
}

.footer-mnu li {
    margin-bottom: 1rem;
}

.footer-mnu li:last-child {
    margin-bottom: 0;
}

.footer-mnu-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-left: -2rem;
    margin-bottom: -0.5rem;
}

.footer-mnu-line li {
    margin-left: 2rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    position: relative;
    padding: 1.625rem 0 1.5rem;
    font-size: 0.875rem;
}

.footer-bottom::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background-color: var(--background-color);
    opacity: 0.1;
}

.footer-bottom .copyright {
    opacity: 0.8;
}

.footer-bottom .items {
    margin-bottom: -1.5rem;
}

.footer-bottom .item {
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    margin-bottom: -1rem;
    margin-left: -1.25rem;
}

.footer-links ul li {
    margin-bottom: 1rem;
    margin-left: 1.25rem;
}

.footer-links ul li a {
    display: block;
    text-decoration: none;
    border-bottom: 1px dashed var(--background-color);
}

.footer-links ul li a:hover {
    border-bottom-style: solid;
}

/* === 8. Media === */
/*==========  Desktop First  ==========*/
@media (max-width: 1199.98px) {
    .mmm {
        display: flex;
    }

    .header-fixed .container {
        padding-left: 0.625rem;
        padding-right: 0.625rem;
    }

    .header-fixed .row {
        margin-left: -0.625rem;
        margin-right: -0.625rem;
    }

    .header-fixed .row .header-fixed-col {
        padding: 0 0.625rem;
    }

    .hover-link > span {
        transform: none;
    }

    .hover-link::after {
        content: none;
    }

    .hover-link.active > span, .hover-link:hover > span {
        transform: none;
    }
}

@media (max-width: 991.98px) {
    .header-fixed {
        z-index: 101;
    }
}

@media only screen and (max-width: 767.98px), only screen and (min-width: 567px) and (max-width: 900px) and (orientation: landscape) {
    .header-fixed {
        padding: 0.625rem 0 0.625rem 0.25rem;
    }

    .logo img {
        max-height: 2.25rem;
    }

    .section-heading {
        margin-bottom: 3rem;
    }

    .section-heading h1, .section-heading h2, .section-heading h3 {
        font-size: 2rem;
    }

    .item-heading-large {
        font-size: 1.25rem;
    }

    .section-nav {
        margin-bottom: 1.5rem;
    }

    .footer-main {
        padding: 3rem 0;
    }

    .footer-mnu-line {
        justify-content: center;
    }

    .footer-minimal .footer-company-top {
        display: flex;
        justify-content: center;
    }

    .footer-minimal .footer-bottom {
        text-align: center;
    }

    .footer-minimal .footer-links ul {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .item-heading-middle {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .el.el-16x9::after {
        margin-top: 65%;
    }

    .el.el-2x1::after {
        margin-top: 60%;
    }

    .header-minimal .btn-link .btn-link-ico {
        display: none;
    }
}

@media (min-width: 1200px) {
    .main-mnu:not(.justify-content-center) {
        padding-left: 1.25rem;
    }

    .header-fixed .col-xl {
        flex: 1 0 0%;
    }
}

@media (min-width: 1400px) {
    .main-mnu:not(.justify-content-center) {
        padding-left: 1.5rem;
    }
}

@media (min-width: 1600px) {
    .container-fluid {
        padding: 0 2rem;
    }
}

@media (min-width: 1800px) {
    .container-fluid {
        padding: 0 3rem;
    }
}

@media (min-width: 768px) {
    .bff-container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .bff-container p {
        margin: 0;
    }
}



/* SEO Block */
.content-wrapper {
    display: flex;
    flex-direction: column;
}

/* Порядок отображения элементов на страницах daily и hourly */
.content-wrapper .order-1 {
    order: 1;
}

.content-wrapper .order-2 {
    order: 2;
}

.content-wrapper .order-3 {
    order: 3;
}

.content-wrapper .order-4 {
    order: 4;
}

.seo-block {
    position: relative;
    overflow: hidden; /* Hide overflowing content */
    max-height: 40px; /* Initially show only the title */
    transition: max-height 0.5s ease; /* Smooth transition for reveal */
	background-color: #f0f0f0; /* Light gray background */
}

.seo-block:hover {
    max-height: 1000px; /* Expand to full height on hover */
}

.seo-title {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
    text-align: center; /* Center align title */
}

.seo-content {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 10px;
    padding: 0 10px; /* Optional: Add padding for better readability */
}


/* Apartment List */
.apartment-list {
    margin: 20px 0;
}

.apartment-list h2 {
    text-align: center;
    text-transform: uppercase; /* Make text uppercase */
}

.apartment {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 20px;
	background-color: #f0f0f0; /* Light gray background */
}

.apartment-title {
    font-size: 20px;
    margin: 10px 0;
    text-align: center; /* Center align title */
    text-transform: uppercase; /* Make text uppercase */
}

/* Add hover effect to apartment photos */
.apartment-photo {
    display: block;
    margin: 0 auto; /* Center align image */
    transition: transform 0.3s ease; /* Smooth transition */
}

.apartment-photo:hover {
    transform: scale(1.05); /* Slightly enlarge the image */
}

.apartment-details {
    text-align: left; /* Align text to the left */
}

.apartment-details p {
    font-size: 16px;
    margin: 5px 0;
    display: flex;
}

.apartment-details .label {
    width: 80px; /* Adjust width to align text in column */
    font-weight: bold;
	text-align: right;
	margin-right: 10px;
}

.apartment-more {
    display: block; /* Make button block level */
    text-align: center; /* Center align button text */
    padding: 8px 16px; /* Smaller padding for button */
    margin: 10px auto; /* Center align button */
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px; /* Smaller font size for button */
    width: fit-content; /* Fit button width to content */
}

.apartment-more:hover {
    background-color: #0056b3;
}

/* Style for apartment link */
.apartment-link {
    text-decoration: none; /* Remove underline from link */
    color: inherit; /* Inherit color from parent */
    display: block; /* Make the link block-level to include image and title */
    transition: transform 0.3s ease; /* Smooth transition for hover effect */
}

.apartment-link:hover {
    transform: scale(1.05); /* Slightly enlarge the link on hover */
}

/* Styles for apartment card */
.apartment-card {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.apartment-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.apartment-address,
.apartment-rooms,
.apartment-floor,
.apartment-beds,
.apartment-price-daily,
.apartment-price-hourly {
    font-size: 16px;
    margin-bottom: 5px;
}

.booking-form {
    margin-top: 20px;
}

.contact-buttons {
    margin-top: 20px;
}

.contact-buttons .btn {
    margin-right: 10px;
    margin-bottom: 10px;
}

h3 {
    margin-top: 20px;
    font-size: 20px;
}

.row .col-md-4 p {
    display: flex;
    align-items: center;
}

.row .col-md-4 img {
    margin-right: 10px;
}

.carousel-item img {
    max-width: 100%;
    max-height: 450px; /* Set a max height */
    /*object-fit: contain;  Maintain aspect ratio */
    width: auto; /* Override the width to allow vertical images */
    height: auto; /* Override the height to allow vertical images */
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Ensure the carousel works well on mobile devices */
@media (max-width: 768px) {
    .carousel-item img {
        max-height: 300px; /* Adjust max height for smaller screens */
    }
}

.btn-orange {
    display: inline-block;
    padding: 0.375em 0.75em; /* Уменьшенный padding */
    font-size: 0.875rem; /* Уменьшенный размер шрифта */
    font-weight: 600;
    color: #fff !important;
    background-color: #ff6600 !important;
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-orange:hover {
    background-color: green !important;/* Цвет кнопки при наведении */
    color: white !important; /* Цвет текста при наведении */
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 0;
    background-color: #1a1a1a; /* Fallback background color */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Обновленное изображение */
    background-image: url('/static/img/new/intro-vokzal.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 1;
}

/* Fallback if image doesn't load */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    z-index: -1;
}

/* --- Mobile Fixes --- */
@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh; /* На мобильном лучше на весь экран */
        padding: 100px 0 60px; /* Больше отступ сверху для меню */
        height: auto;
    }

    .hero-background {
        background-attachment: scroll; /* Отключаем параллакс на мобильных (убирает "корявость") */
    }

    .hero-content {
        padding: 20px 15px;
        width: 100%;
    }

    .hero-title {
        font-size: 2rem !important; /* Фиксированный размер, clamp иногда сбоит */
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .btn-hero {
        width: 100%; /* Кнопки на всю ширину */
        padding: 15px;
        display: flex;
        justify-content: center;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: #ffffff !important;
    margin-bottom: 40px;
    font-weight: 400;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 180px;
    justify-content: center;
}

.btn-hero-primary {
    background-color: #ff6600;
    color: #ffffff;
    border: 2px solid #ff6600;
}

.btn-hero-primary:hover {
    background-color: #e55a00;
    border-color: #e55a00;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.4);
}

.btn-hero-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-hero-secondary:hover {
    background-color: #ffffff;
    color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn-hero .btn-icon-right {
    width: 13px;
    height: 9px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.btn-hero:hover .btn-icon-right {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        padding: 60px 0;
    }

    .hero-content {
        padding: 20px 15px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .btn-hero {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 60vh;
        padding: 40px 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Выровнять текст по левой стороне и создать отступы после двоеточий */
.apartment-info .info {
    text-align: left;
    margin-left: 10px;
}

.apartment-info .info p {
    display: flex;
    justify-content: flex-start;
    gap: 10px; /* Регулируйте значение по необходимости */
}

.apartment-info .info .info-value {
    margin-left: 0;
    flex-grow: 1;
}

/* Оранжевая кнопка */
.btn-warning {
    background-color: #ff9800;
    border-color: #ff9800;
    color: #fff;
}

/* Контактные кнопки */
.contact-buttons img {
    width: 40px;
    height: 40px;
    margin: 0 10px;
}

.contact-buttons {
    text-align: center;
    margin-top: 20px;
}

.contact-buttons h3 {
    margin-bottom: 10px;
}

/* Модальное окно */
.modal-content {
    padding: 20px;
}

/* Стиль для apartment-description */
.apartment-description {
    background-color: #f8f9fa; /* или другой нужный цвет */
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Выравнивание заголовка h3 по центру и отступы сверху и снизу */
.apartment-description h3 {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Стиль для apartment-features */
.apartment-features {
    background-color: #ffffff; /* Белый фон */
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Выравнивание заголовка h3 по центру и отступы сверху и снизу */
.apartment-features h3 {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.apartment-nearby {
    background-color: #f8f8f8; /* Светло-серый фон */
    padding: 20px;
    margin-top: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.apartment-nearby h3 {
    text-align: center;
    margin-bottom: 20px;
}

.apartment-nearby ul {
    list-style: none;
    padding: 0;
}

.apartment-nearby li {
    font-size: 16px;
    margin-bottom: 10px;
}

.apartment-location {
    background-color: #fff; /* Белый фон */
    padding: 20px;
    margin-top: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.apartment-location h3 {
    text-align: center;
    margin-bottom: 20px;
}

.map-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}


/* Стили для контактов */
.footer-contacts {
    background-color: #333;
    padding: 20px 0;
    margin-top: 20px;
}

.footer-contacts h5 {
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.contact-buttons .btn {
    margin: 5px;
    color: #fff;
    text-align: center;
}

.social-buttons .btn {
    margin: 5px;
    color: #fff;
    text-align: center;
}

/* Стили для социальных сетей */
.social-buttons i {
    font-size: 20px;
}

.footer-bottom {
    background-color: #222;
    padding: 20px 0;
}

.footer-bottom .footer-links ul {
    padding-left: 0;
}

.footer-bottom .footer-links ul li {
    display: inline;
    margin-right: 15px;
}

.footer-bottom .footer-links ul li a {
    color: #999;
    text-decoration: none;
}

.footer-bottom .footer-links ul li a:hover {
    color: #fff;
}

.footer-bottom .copyright {
    color: #999;
    text-align: center;
    margin-top: 10px;
}

/* Стили для контактов и социальных сетей */
.footer-contacts {
    background-color: #333;
    padding: 20px 0;
    margin-top: 20px;
}

.footer-contacts h5 {
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.contact-buttons .btn,
.social-buttons .btn {
    margin: 5px;
    color: #fff;
    text-align: center;
}

.carousel-inner {
    width: 100%;
    max-height: 400px; /* Устанавливаем максимальную высоту для изображений */
    overflow: hidden; /* Обрезаем слишком большие изображения */
}

.carousel-inner {
    width: 100%;
    max-height: 400px; /* Устанавливаем максимальную высоту для изображений */
    overflow: hidden; /* Обрезаем слишком большие изображения */
}

.carousel-inner img {
    width: auto; 
    height: 100%; /* Задаем 100% высоты */
    max-height: 400px; /* Ограничиваем высоту */
    object-fit: contain; /* Сохраняем пропорции */
    display: block;
    margin: 0 auto; /* Центрируем изображение */
}

.apartment-info .info span {
    margin-left: 5px;
}

.apartment-info .info p {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.apartment-info .info {
    text-align: left;
}

@media (max-width: 768px) {
    .carousel-inner {
        max-height: 300px; /* Уменьшаем максимальную высоту для мобильных устройств */
    }
    
    .carousel-inner img {
        height: 100%; /* Сохраняем высоту на 100% */
        max-height: 300px; /* Ограничиваем высоту */
    }
    
    .apartment-info .info {
        font-size: 14px; /* Уменьшаем размер текста для мобильных устройств */
    }
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: transparent; /* Transparent background */
    border-radius: 50%;
    padding: 10px;
    filter: invert(0.6); /* Turn white arrow to dark gray */
}

.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
    background-color: transparent; /* Ensure no inner background */
}

.text-center {
    text-align: center;
}
.about-us .row {
    padding: 20px 0;
}

iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

@media (max-width: 768px) {
    iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    iframe {
        height: 200px;
    }
}


.contact-info h2, .contact-form h2, .contact-map h2 {
    margin-bottom: 20px;
}
.contact-info .row, .contact-form .row {
    margin-bottom: 20px;
}
.contact-info .col-md-4, .contact-form .col-md-6 {
    margin-bottom: 20px;
}
.contact-info h4, .contact-form label {
    margin-bottom: 10px;
}
.form-group {
    margin-bottom: 20px;
}

.main-mnu-item-has-child {
    position: relative;
}

.main-mnu-sub {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    padding: 15px 0;
    margin: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.main-mnu-item-has-child:hover .main-mnu-sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-mnu-sub li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.main-mnu-sub li a {
    display: block;
    padding: 8px 20px;
    color: var(--text-primary);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.main-mnu-sub li a:hover {
    background: var(--background-secondary);
    color: var(--accent-color);
}

.main-mnu-sub li a span {
    position: relative;
}

.main-mnu-sub li a:hover span:after {
    width: 100%;
}
/* FAQ Section Custom Styles */
.faq-section .card {
    border: 1px solid #e0e0e0;
    border-radius: 8px !important;
    margin-bottom: 10px;
    box-shadow: none;
    overflow: hidden;
}

.faq-section .card-header {
    background-color: #fdfdfd !important; /* Very light, almost white */
    border-bottom: 1px solid #f0f0f0;
    padding: 0;
}

.faq-section .btn-link {
    color: #333 !important;
    text-decoration: none !important;
    font-weight: 600;
    display: block;
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    transition: background-color 0.2s;
}

.faq-section .btn-link:hover,
.faq-section .btn-link[aria-expanded="true"] {
    background-color: #f8f9fa !important; /* Pastel gray on hover/active */
    color: #ff6600 !important; /* Orange accent */
}

.faq-section .card-body {
    background-color: #fff;
    color: #555;
    padding: 20px;
    font-size: 16px;
    line-height: 1.6;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 0;
    background-color: #1a1a1a; /* Fallback background color */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/static/img/new/intro-vokzal.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* For parallax effect */
    z-index: 1;
}

/* Fallback if image doesn't load */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%); /* Gradient fallback */
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #ffffff !important; /* Ensure white text */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Stronger shadow */
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: #ffffff !important; /* Ensure white text */
    margin-bottom: 40px;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7); /* Stronger shadow */
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 180px;
    justify-content: center;
}

.btn-hero-primary {
    background-color: #ff6600;
    color: #ffffff;
    border: 2px solid #ff6600;
}

.btn-hero-primary:hover {
    background-color: #e55a00;
    border-color: #e55a00;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.4);
}

.btn-hero-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-hero svg {
    fill: currentColor;
    transition: transform 0.3s ease;
}

.btn-hero:hover svg {
    transform: translateX(5px);
}

/* Mobile adjustments for hero section */
@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        padding: 40px 15px; /* Increased padding */
    }

    .hero-background {
        background-attachment: scroll; /* Disable parallax on mobile */
    }

    .hero-content {
        padding: 20px 10px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem); /* Adjusted font size */
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.25rem); /* Adjusted font size */
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column; /* Stack buttons */
        gap: 15px;
    }

    .btn-hero {
        width: 100%; /* Full width buttons */
        max-width: 280px; /* Max width for stacked buttons */
        padding: 14px 25px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 60vh;
        padding: 30px 10px;
    }
    .hero-title {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
    }
    .hero-subtitle {
        font-size: clamp(0.9rem, 4.5vw, 1.1rem);
    }
}

/* --- Apartment Cards Improvements --- */
.apartment {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #e0e0e0; /* Light border to define shape */
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    background-color: #f9f9f9; /* Slightly gray background */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    margin-bottom: 0; /* Removed margin-bottom to let grid handle gap */
}

.apartment:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background-color: #fff; /* Highlight to white on hover */
    border-color: #d0d0d0;
}

.apartment-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.apartment-photo {
    width: 100%;
    height: 240px; /* Fixed height for consistency */
    object-fit: cover; /* Crop image nicely */
    transition: transform 0.5s ease;
}

.apartment:hover .apartment-photo {
    transform: scale(1.05);
}

.apartment-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Push footer to bottom */
    text-align: left;
}

.apartment-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
    text-transform: none; /* Remove uppercase forced */
    text-align: left;
    min-height: auto; /* Let it grow if needed, flex handles alignment */
}

.apartment-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.apartment-title a:hover {
    color: #ff6600;
}

.apartment-address {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.apartment-address i {
    margin-right: 5px;
    color: #999;
}

/* Price and Button at bottom */
.apartment-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.apartment-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.apartment-price small {
    font-size: 0.85rem;
    font-weight: 400;
    color: #888;
}

/* --- Filter Section Improvements --- */
.filter-section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.filter-section form {
    border: none !important; /* Remove inline border style override */
    background: transparent !important;
    padding: 0 !important;
}

.filter-section label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    margin-bottom: 5px;
}

.filter-section .form-control-sm {
    height: calc(2.2rem + 2px);
    font-size: 0.95rem;
    border-color: #ddd;
}

.filter-section .form-control-sm:focus {
    border-color: #ff6600;
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.15);
}

/* --- FAQ Section Improvements --- */
.faq-section {
    background-color: #f4f6f8; /* Muted pastel blue-gray */
    padding: 60px 0;
}

.faq-section h2 {
    margin-bottom: 40px;
    color: #333;
    font-weight: 700;
}

.faq-section .card {
    border: none;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    background: #fff;
    border-radius: 8px !important;
    overflow: hidden;
}

.faq-section .card-header {
    background-color: #fff !important;
    border-bottom: 1px solid #f0f0f0;
    padding: 0;
}

.faq-section .btn-link {
    padding: 20px 25px;
    color: #444 !important;
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none !important;
}

.faq-section .btn-link:hover {
    background-color: #fffbf7 !important; /* Very light orange tint on hover */
    color: #ff6600 !important;
}

.faq-section .card-body {
    padding: 20px 25px 30px;
    color: #666;
    line-height: 1.7;
}

/* Badges */
.badge-top {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ffc107;
    color: #333;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


/* --- Elegant Room Badge --- */
.badge-rooms {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 4px 12px;
    border-radius: 20px; /* Pill shape like stars */
    font-weight: 600;
    z-index: 2;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Metro Colors */
.text-metro-red { color: #e74c3c !important; font-weight: 600; }
.text-metro-blue { color: #3498db !important; font-weight: 600; }
.text-metro-green { color: #27ae60 !important; font-weight: 600; }

/* Filter Sidebar */
.filter-sidebar .form-group {
    margin-bottom: 1rem;
}

.filter-sidebar label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #555;
}

.btn-block {
    display: block;
    width: 100%;
}


/* --- Elegant Buttons --- */
.filter-section .btn {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 15px;
    font-weight: 700;
    border-radius: 50px; /* Pill shape for elegance */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.filter-section .btn + .btn {
    margin-top: 10px;
}

/* Find Button (removed orange duplicate) */

/* Reset Button (removed duplicate) */

/* --- Apartment Card Location Info --- */
.apartment-location-info {
    margin-bottom: 15px;
    line-height: 1.4;
}

.info-district {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.info-address {
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
}

.info-address i {
    margin-right: 5px;
    font-size: 1.1rem;
    color: #999;
}

.info-metro {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.info-metro i {
    font-size: 1rem;
    margin-right: 4px;
}

/* --- Elegant FAQ --- */
.faq-section .card {
    border: none;
    background: transparent;
    box-shadow: none;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0 !important;
    margin-bottom: 0;
}

.faq-section .card:last-child {
    border-bottom: none;
}

.faq-section .card-header {
    background: transparent !important;
    border: none;
    padding: 0;
}

.faq-section .btn-link {
    padding: 20px 0;
    color: #333 !important;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-section .btn-link:hover,
.faq-section .btn-link[aria-expanded="true"] {
    color: #ff6600 !important;
    text-decoration: none !important;
    background-color: transparent !important;
}

.faq-section .card-body {
    padding: 0 0 25px 0;
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
}

/* Rotate icon on expand */
.faq-section .btn-link .material-icons {
    transition: transform 0.3s ease;
}

.faq-section .btn-link[aria-expanded="true"] .material-icons {
    transform: rotate(180deg);
}



/* --- Reset Button Readability --- */
.filter-section .btn-outline-secondary {
    background-color: #6c757d !important; /* Gray background */
    border-color: #6c757d !important;
    color: #fff !important; /* White text */
    font-weight: 700;
}

.filter-section .btn-outline-secondary:hover {
    background-color: #dc3545 !important; /* Red background */
    border-color: #dc3545 !important;
    color: #fff !important; /* White text */
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

/* --- Checkboxes: Label Left, Box Right --- */

/* --- Elegant More Button --- */
.apartment-footer .btn,
.apartment-footer .btn.btn-outline-primary {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    background-color: #007bff !important; /* Blue background */
    background-image: none !important; /* Ensure no gradient */
    border-color: #007bff !important;
    color: #fff !important; /* White text */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.apartment-footer .btn:hover,
.apartment-footer .btn.btn-outline-primary:hover {
    background-color: #28a745 !important; /* Green background on hover */
    background-image: none !important; /* Ensure no gradient */
    border-color: #28a745 !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(40, 167, 69, 0.3);
}

/* --- Rating Stars --- */
.rating-stars {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    padding: 4px 8px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.rating-stars i {
    color: #ffc107;
    font-size: 1rem;
    margin-right: 1px;
}

.rating-stars i:last-child {
    margin-right: 0;
}

/* --- Filter Buttons: Common Styles --- */
.filter-section .btn {
    background-image: none !important; /* Remove gradient */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 15px;
    font-weight: 700;
    border-radius: 50px;
}

/* Find Button (Найти) */
.filter-section .btn-primary {
    background-color: #007bff !important; /* Blue background */
    border-color: #007bff !important;
    color: #fff !important; /* White text */
}

.filter-section .btn-primary:hover {
    background-color: #28a745 !important; /* Green background on hover */
    border-color: #28a745 !important;
    color: #fff !important; /* White text */
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
}
.filter-section .custom-control.custom-checkbox {
    padding-left: 0;
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.filter-section .custom-control-label {
    position: relative;
    padding-left: 0;
    padding-right: 2rem; /* Space for box on right */
    width: 100%;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.filter-section .custom-control-label::before,
.filter-section .custom-control-label::after {
    left: auto !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%);
}

/* --- Disable Ripple Effect for Filter Buttons to prevent Blue Overlay --- */
.filter-section .btn .el-ripple-circle {
    display: none !important;
}

/* --- Disable Ripple Effect for Apartment Buttons too --- */
.apartment-footer .btn .el-ripple-circle {
    display: none !important;
}

/* --- Video Button Red (YouTube Style) --- */
button[data-target="#videoModal"],
button[data-toggle="modal"][data-target="#videoModal"] {
    background: #FF0000 !important; /* YouTube Red */
    background-image: none !important; /* Remove gradient */
    border-color: #FF0000 !important;
    color: #fff !important;
}

button[data-target="#videoModal"]:hover,
button[data-toggle="modal"][data-target="#videoModal"]:hover {
    background: #CC0000 !important; /* Darker red on hover */
    background-image: none !important;
    border-color: #CC0000 !important;
    color: #fff !important;
}


/* --- Bootstrap Spacing Utilities (Missing in grid-only build) --- */
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

.pb-1 { padding-bottom: 0.25rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.pb-5 { padding-bottom: 3rem !important; }

.pt-1 { padding-top: 0.25rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pt-3 { padding-top: 1rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.pt-5 { padding-top: 3rem !important; }


/* --- Fix Booking Button (Btn Orange) --- */
.btn.btn-orange {
    background-color: #ff6600 !important;
    background-image: none !important; /* Remove blue gradient */
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 6px rgba(255, 102, 0, 0.3);
}

.btn.btn-orange:hover {
    background-color: #28a745 !important; /* Green */
    background-image: none !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
    transform: translateY(-1px);
}

/* Disable ripple for orange button */
.btn.btn-orange .el-ripple-circle {
    display: none !important;
}

/* Стили для кнопок управления зумом Google Maps */
.gm-style .gm-control-active,
.gm-style .gm-zoom-control {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3) !important;
}

.gm-style .gm-control-active:hover {
    background-color: #f8f9fa !important;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4) !important;
}

/* Увеличиваем размер кнопок зума для лучшей видимости */
.gm-style .gm-zoom-control button {
    width: 40px !important;
    height: 40px !important;
    font-size: 20px !important;
    font-weight: bold !important;
    color: #333 !important;
    background-color: #fff !important;
    border: 1px solid #ccc !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.gm-style .gm-zoom-control button:hover {
    background-color: #f0f0f0 !important;
    border-color: #999 !important;
}

.gm-style .gm-zoom-control button:active {
    background-color: #e0e0e0 !important;
}

