/* Подключение локальных шрифтов */
@font-face {
  font-family: 'Benzin-Regular';
  src: url('/assets/font/Benzin-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Benzin-Medium';
  src: url('/assets/font/Benzin-Medium.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Стили для страницы входа в админ панель */
body{
margin: 0;
}
.admin-login-body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #00868B;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-login-container {
  width: 100%;
  max-width: 450px;
  padding: 20px;
}

.admin-login-box {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  padding: 40px;
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(-20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.admin-login-header {
  text-align: center;
  margin-bottom: 30px;
}

.admin-login-title {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin: 0 0 8px 0;
}

.admin-login-subtitle {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.admin-message {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
      opacity: 0;
      transform: translateY(-10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.admin-message-error {
  background-color: #fee;
  color: #c33;
  border: 1px solid #fcc;
}

.admin-message-success {
  background-color: #efe;
  color: #3c3;
  border: 1px solid #cfc;
}

.admin-login-form {
  margin-top: 30px;
}

.admin-form-group {
  margin-bottom: 20px;
}

.admin-form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.admin-form-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

.admin-form-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.admin-form-input::placeholder {
  color: #999;
}

.admin-login-button {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: #00868B;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
}

.admin-login-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 134, 139, 0.4);
}

.admin-login-button:active {
  transform: translateY(0);
}

.admin-login-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.admin-login-footer {
  margin-top: 25px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.admin-login-link {
  color: #00868B;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.admin-login-link:hover {
  color: #00868B;
  text-decoration: underline;
}

/* Адаптивность */
/* @media (max-width: 480px) {
  .admin-login-container {
      padding: 15px;
  }
  
  .admin-login-box {
      padding: 30px 20px;
  }
  
  .admin-login-title {
      font-size: 24px;
  }
} */

/* Стили для админ панели */

.admin-body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f5f5f5;
  min-height: 100vh;
}

.admin-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.admin-header {
  background: #00868B;
  color: #ffffff;
  padding: 20px 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.admin-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.admin-header-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.admin-header-user {
  display: flex;
  align-items: center;
  gap: 20px;
}

.admin-user-name {
  font-size: 16px;
  font-weight: 500;
}

.admin-logout-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.admin-logout-link:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.admin-nav {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 0 40px;
  display: flex;
  gap: 0;
  overflow-x: auto;
}

.admin-nav-item {
  padding: 16px 24px;
  color: #666;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.admin-nav-item:hover {
  color: #00868B;
  background-color: #f9f9f9;
}

.admin-nav-item-active {
  color: #00868B;
  border-bottom-color: #00868B;
}

.admin-main {
  flex: 1;
  padding: 40px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.admin-welcome {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.admin-welcome-title {
  font-size: 32px;
  font-weight: 600;
  color: #333;
  margin: 0 0 12px 0;
}

.admin-welcome-text {
  font-size: 16px;
  color: #666;
  margin: 0 0 20px 0;
}

.admin-info-box {
  background-color: #f9f9f9;
  border-left: 4px solid #00868B;
  padding: 16px 20px;
  border-radius: 6px;
  margin-top: 20px;
}

.admin-info-text {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.admin-dashboard {
  margin-top: 30px;
}

.admin-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.admin-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.admin-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-color: #00868B;
}

.admin-card-icon {
  font-size: 48px;
  margin-bottom: 16px;
  color: #00868B;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-card-icon i {
  font-size: 48px;
}

.admin-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0 0 8px 0;
}

.admin-card-text {
  font-size: 14px;
  color: #666;
  margin: 0 0 20px 0;
  line-height: 1.5;
}

.admin-card-link {
  color: #00868B;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.admin-card-link:hover {
  color: #00868B;
}
.main-slider-overlay-darker{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 100;
}

/* Адаптивность для админ панели */
@media (max-width: 768px) {
  .admin-header {
      padding: 16px 20px;
  }
  
  .admin-header-content {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
  }
  
  .admin-header-title {
      font-size: 20px;
  }
  
  .admin-nav {
      padding: 0 20px;
  }
  
  .admin-nav-item {
      padding: 12px 16px;
      font-size: 14px;
  }
  
  .admin-main {
      padding: 20px;
  }
  
  .admin-welcome {
      padding: 24px;
  }
  
  .admin-welcome-title {
      font-size: 24px;
  }
  
  .admin-dashboard-grid {
      grid-template-columns: 1fr;
      gap: 16px;
  }
  
  .admin-card {
      padding: 24px;
  }
}

/* Стили для страниц управления (CRUD) */

.admin-page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.admin-page-title {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.admin-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.admin-btn-primary {
  background: #00868B;
  color: #ffffff;
}

.admin-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 134, 139, 0.4);
}

.admin-btn-secondary {
  background: #e0e0e0;
  color: #333;
}

.admin-btn-secondary:hover {
  background: #d0d0d0;
}

.admin-table-container {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table thead {
  background-color: #f5f5f5;
}

.admin-table th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
  color: #333;
  font-size: 14px;
  border-bottom: 2px solid #e0e0e0;
}

.admin-table td {
  padding: 16px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
  color: #666;
}

.admin-table tbody tr:hover {
  background-color: #f9f9f9;
}

.admin-table-empty {
  text-align: center;
  color: #999;
  padding: 40px !important;
}

.admin-table-actions {
  display: flex;
  gap: 8px;
}

.admin-btn-icon {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  color: #666;
  transition: all 0.3s ease;
}

.admin-btn-icon:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
}

.admin-btn-icon-danger {
  background: #fee;
  color: #c33;
}

.admin-btn-icon-danger:hover {
  background: #fcc;
}

.admin-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.admin-status-open {
  background: #efe;
  color: #3c3;
}

.admin-status-closed {
  background: #fee;
  color: #c33;
}

.admin-required {
  color: #f00;
}

/* Модальные окна */

.admin-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.admin-modal.active {
  display: flex;
}

.admin-modal-content {
  background: #ffffff;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.admin-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e0e0e0;
}

.admin-modal-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.admin-modal-close {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #666;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.admin-modal-close:hover {
  background: #f0f0f0;
  color: #333;
}

.admin-modal-body {
  padding: 24px;
}

.admin-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 20px 24px;
  border-top: 1px solid #e0e0e0;
  margin-top: 20px;
}

/* Стили для изображений в таблице */

.admin-table-image {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
}

.admin-table-no-image {
  color: #999;
  font-size: 12px;
  font-style: italic;
}

/* Стили для загрузки файлов */

.admin-form-hint {
  font-size: 12px;
  color: #999;
  font-weight: normal;
  margin-left: 8px;
}

.admin-image-preview {
  margin-top: 12px;
}

.admin-preview-image {
  max-width: 200px;
  max-height: 150px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  object-fit: cover;
}

.admin-current-image {
  margin-top: 12px;
  padding: 12px;
  background: #f9f9f9;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
}

.admin-current-image-label {
  font-size: 12px;
  color: #666;
  margin: 0 0 8px 0;
}

.admin-current-image-preview {
  max-width: 200px;
  max-height: 150px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  object-fit: cover;
}

input[type="file"] {
  padding: 8px;
  font-size: 14px;
}

/* Стили для галереи */

.admin-gallery-preview {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-gallery-preview-item {
  position: relative;
  width: 120px;
  height: 90px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.admin-gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-current-gallery {
  margin-top: 12px;
  padding: 12px;
  background: #f9f9f9;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
}

.admin-current-gallery-label {
  font-size: 12px;
  color: #666;
  margin: 0 0 12px 0;
}

.admin-current-gallery-items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-current-gallery-item {
  position: relative;
  width: 120px;
  height: 90px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.admin-current-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-gallery-item-delete {
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(255, 0, 0, 0.8);
  color: white;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: background 0.2s;
}

.admin-gallery-item-delete:hover {
  background: rgba(255, 0, 0, 1);
}
figure{
  max-width: 100%;
    margin-inline: unset;
}
figure table{
  font-size: 16px;
  width: 100%;
  border-collapse: collapse;
}
.article-content p{
  font-size: 16px;
}
.article-content h2{
  font-size: 28px;
}
.article-content h3{
  font-size: 20px;
}
.article-content ul{
  font-size: 16px;
}
.article-content ol{
  font-size: 16px;
}
.article-content a{
  color: #00868b !important;
}
.admin-modal-content-large {
  max-width: 1200px;
  width: 95%;
}
.table td{
  border: 1px solid #e0e0e0;
  padding: 10px;
}
.table th{
  color: white;
  background: #168d91;
  padding: 10px;
  border: 1px solid #ffffff;
}

/* Стили для CKEditor 5 редактора */
.ck-editor__editable {
  min-height: 400px;
  font-family: Roboto, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.ck.ck-editor {
  margin-top: 8px;
}

.ck.ck-editor__main > .ck-editor__editable {
  border: 1px solid #e0e0e0;
  border-radius: 0 0 8px 8px;
}

.ck.ck-toolbar {
  border: 1px solid #e0e0e0;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  background: #f8f9fa;
}

.ck.ck-button {
  color: #333;
}

.ck.ck-button:hover:not(.ck-disabled) {
  background: #e9ecef;
}

/* Улучшаем отображение редактора в модальном окне */
.admin-modal-content-large .ck.ck-editor {
  width: 100%;
}

code {
  background: #f5f5f5;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: #d63384;
}

/* Адаптивность для таблиц и модальных окон */
@media (max-width: 768px) {
  .admin-page-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
  }
  
  .admin-table-container {
      overflow-x: auto;
  }
  
  .admin-table {
      min-width: 800px;
  }
  
  .admin-modal-content {
      width: 95%;
      max-height: 95vh;
  }
}

/* ============================================
 СТИЛИ ДЛЯ СТРАНИЦЫ КАТАЛОГА
 ============================================ */

.catalog-page {
  width: 100%;
  min-height: 100vh;
  background: white;
  position: relative;
  overflow-x: hidden;
}

/* Header */
.catalog-header {
  position: relative;
  width: 100%;
  min-height: 253px;
  background: #00868B;
  margin-bottom: 0;
}

.catalog-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00868B;
  z-index: 0;
}

.catalog-header-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/img/top.png');
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.catalog-header-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 37px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.catalog-header-phone-box {
  background: white;
  border-radius: 15px;
  padding: 10px 20px;
  height: 71px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-header-phone {
  color: black;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  text-decoration: underline;
  white-space: nowrap;
}

.catalog-header-logo {
  width: 91px;
  height: 53px;
  object-fit: contain;
  flex-shrink: 0;
}

.catalog-header-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.catalog-header-nav-item {
  color: white;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.catalog-header-nav-item:hover {
  opacity: 0.8;
}

.catalog-header-nav-item-active {
  font-family: 'Inter', sans-serif;
}

.catalog-header-menu-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: black;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}

.catalog-header-menu-btn img {
  width: 27px;
  height: 27px;
}

/* Main Content */
.catalog-main {
  width: 100%;
  position: relative;
}

.catalog-container {
  margin: 0 auto;
  padding: 40px 71px;
  padding-top: 0;
}

/* Hero Section */
.catalog-hero {
  position: relative;
  padding: 20px 0;
  padding-top: 0;
  margin-bottom: 109px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.catalog-hero-title {
  color: white;
  font-size: 48px;
  font-family: 'Benzin-Medium', sans-serif;
  font-weight: 400;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.catalog-hero-subtitle {
  color: white;
  font-size: 24px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.catalog-cart-icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 88px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-cart-icon img {
  width: 73px;
  height: 71px;
  object-fit: contain;
}

/* Filters */
.catalog-filters-section {
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.catalog-filter-btn {
  height: 60px;
  padding: 10px 20px;
  background: white;
  border: 1px solid black;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: black;
}

.catalog-filter-btn:hover {
  background: #f5f5f5;
}

.catalog-filter-btn-active {
  background: #00868B;
  border-color: #00868B;
  color: white;
  font-weight: 700;
}

.catalog-filter-btn img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.catalog-subfilters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.catalog-subfilter-btn {
  height: 60px;
  padding: 10px 20px;
  background: white;
  border: 1px solid black;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: black;
  font-size: 24px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.catalog-subfilter-btn:hover {
  background: #f5f5f5;
}

.catalog-subfilter-btn-active {
  background: #00868B;
  border-color: #00868B;
  color: white;
  font-weight: 700;
}

/* Products */
.catalog-products {
  display: flex;
  flex-direction: column;
  gap: 56px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.catalog-empty {
  text-align: center;
  padding: 60px 20px;
  color: #666;
  font-size: 24px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.catalog-product {
  display: flex;
  gap: 63px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.catalog-product-image {
  width: 100%;
  max-width: 483px;
  height: 296px;
  border-radius: 15px;
  object-fit: cover;
  flex-shrink: 0;
}

.catalog-product-content {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.catalog-product-header {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.catalog-product-title {
  color: black;
  font-size: 32px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.catalog-product-description {
  color: black;
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
}

.catalog-product-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.catalog-product-prices {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
}

.catalog-product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.catalog-product-price-label {
  color: black;
  font-size: 20px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.catalog-product-price-values {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.catalog-product-price-old {
  color: #9C9C9C;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  text-decoration: line-through;
}

.catalog-product-price-new {
  color: black;
  font-size: 20px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}

.catalog-product-price-new-child {
  opacity: 0.90;
}

.catalog-product-buy-btn {
  padding: 8px 25px;
  background: #00868B;
  border: none;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
}

.catalog-product-buy-btn:hover {
  background: #006d71;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 134, 139, 0.4);
}

.catalog-product-buy-btn span {
  color: white;
  font-size: 28px;
  font-weight: 500;
}

.catalog-product-buy-btn img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* Footer */
.catalog-footer {
  width: 100%;
  background: white;
  margin-top: 100px;
}

.catalog-footer-divider {
  width: 100%;
  height: 2px;
  background: black;
}

.catalog-footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 71px;
}

.catalog-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.catalog-footer-address {
  color: black;
  font-size: 24px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  max-width: 403px;
}

.catalog-footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
}

.catalog-footer-link {
  color: black;
  font-size: 24px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.catalog-footer-link:hover {
  color: #00868B;
}

.catalog-footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
}

.catalog-footer-social img {
  width: 67px;
  height: 67px;
  object-fit: contain;
}

.catalog-footer-menu {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.catalog-footer-menu-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.catalog-footer-menu-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.catalog-footer-menu-title {
  color: black;
  font-size: 24px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.catalog-footer-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.catalog-footer-menu-links a {
  color: black;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 30px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.catalog-footer-menu-links a:hover {
  color: #00868B;
}

.catalog-footer-logo-box {
  width: 185px;
  height: 166px;
  background: #00868B;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto;
}

.catalog-footer-logo-box img {
  width: 137px;
  height: 80px;
  object-fit: contain;
}

.catalog-footer-bottom {
  width: 100%;
  background: #00868B;
  padding: 20px 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.catalog-footer-copyright {
  color: white;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.catalog-footer-tax {
  color: white;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

/* ============================================
 АДАПТИВНОСТЬ ДЛЯ КАТАЛОГА
 ============================================ */

/* Планшеты (1024px и меньше) */
@media (max-width: 1024px) {
  .catalog-header-container {
      padding: 20px;
  }

  .catalog-header-nav {
      gap: 20px;
  }

  .catalog-container {
      padding: 30px 20px;
      padding-top: 0;
  }

  .catalog-hero-title {
      font-size: 36px;
  }
  .catalog-hero{
    margin-bottom: 75px;
  }

  .catalog-hero-subtitle {
      font-size: 20px;
  }

  .catalog-product {
      gap: 40px;
  }

  .catalog-product-image {
      max-width: 100%;
  }

  .catalog-footer-container {
      padding: 30px 20px;
  }

  .catalog-footer-content {
      flex-direction: column;
  }

  .catalog-footer-contacts {
      align-items: flex-start;
  }

  .catalog-footer-link {
      text-align: left;
  }
}

/* Мобильные устройства (768px и меньше) */
@media (max-width: 768px) {
  .catalog-header {
      min-height: auto;
  }

  .catalog-header-container {
      flex-direction: column;
      align-items: flex-start;
      padding: 20px;
      gap: 15px;
  }

  .catalog-header-phone-box {
      width: 100%;
      max-width: 216px;
  }

  .catalog-header-nav {
      width: 100%;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
  }

  .catalog-header-menu-btn {
      position: absolute;
      top: 20px;
      right: 20px;
  }

  .catalog-container {
      padding: 20px;
      padding-top: 0;
  }
  .catalog-cart-icon img{
    width: 50px;
  height: 51px;
  display: none;
  }

  .catalog-hero {
      margin-bottom: 55px;
  }

  .catalog-hero-title {
      font-size: 25px;
  }

  .catalog-hero-subtitle {
      font-size: 18px;
  }

  .catalog-cart-icon {
    position: absolute;
    top: -5px;
    margin: 0;
  }

  .catalog-filters-section {
      margin-bottom: 40px;
  }

  .catalog-filters {
      gap: 8px;
      margin-bottom: 20px;
  }

  .catalog-filter-btn {
      height: 50px;
      padding: 8px 15px;
      font-size: 18px;
  }

  .catalog-filter-btn img {
      width: 24px;
      height: 24px;
  }

  .catalog-subfilters {
      gap: 8px;
  }

  .catalog-subfilter-btn {
      height: 50px;
      padding: 8px 15px;
      font-size: 18px;
  }

  .catalog-products {
      gap: 40px;
  }

  .catalog-product {
      flex-direction: column;
      gap: 30px;
  }

  .catalog-product-image {
      width: 100%;
      height: 200px;
  }

  .catalog-product-content {
      width: 100%;
      gap: 20px;
  }
  .catalog-product-prices{
    width: 100%;
  }
  .catalog-product-price-row{
    width: 100%;
  }
  .catalog-product-title {
      font-size: 24px;
  }

  .catalog-product-description {
      font-size: 16px;
      line-height: 24px;
  }

  .catalog-product-footer {
      flex-direction: column;
      align-items: flex-start;
  }

  .catalog-product-buy-btn {
      width: 100%;
      padding: 12px 20px;
  }

  .catalog-product-buy-btn span {
      font-size: 22px;
  }

  .catalog-footer-container {
      padding: 20px;
  }

  .catalog-footer-content {
      flex-direction: column;
      margin-bottom: 30px;
  }

  .catalog-footer-address {
      font-size: 18px;
  }

  .catalog-footer-link {
      font-size: 18px;
  }

  .catalog-footer-menu {
      flex-direction: column;
      gap: 30px;
  }

  .catalog-footer-logo-box {
      width: 150px;
      height: 135px;
  }

  .catalog-footer-logo-box img {
      width: 110px;
      height: 65px;
  }

  .catalog-footer-bottom {
      flex-direction: column;
      padding: 20px;
      text-align: center;
  }

  .catalog-footer-copyright,
  .catalog-footer-tax {
      font-size: 14px;
  }
}

/* ============================================
 СТИЛИ ДЛЯ СТРАНИЦЫ СТАТЕЙ/СОБЫТИЙ
 ============================================ */

.articles-page {
  width: 100%;
  min-height: 100vh;
  background: white;
  position: relative;
  overflow-x: hidden;
}

/* Header */
.articles-header {
  position: relative;
  width: 100%;
  min-height: 253px;
  background: #00868B;
  margin-bottom: 0;
}

.articles-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00868B;
  z-index: 0;
}

.articles-header-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/img/top.png');
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.articles-header-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 37px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.articles-header-phone-box {
  background: white;
  border-radius: 15px;
  padding: 10px 20px;
  height: 71px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.articles-header-phone {
  color: black;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  text-decoration: underline;
  white-space: nowrap;
}

.articles-header-logo {
  width: 91px;
  height: 53px;
  object-fit: contain;
  flex-shrink: 0;
}

.articles-header-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.articles-header-nav-item {
  color: white;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.articles-header-nav-item:hover {
  opacity: 0.8;
}

.articles-header-nav-item-active {
  font-family: 'Inter', sans-serif;
}

.articles-header-menu-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: black;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}

.articles-header-menu-btn img {
  width: 27px;
  height: 27px;
}

/* Main Content */
.articles-main {
  width: 100%;
  position: relative;
}

.articles-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 71px 40px;
  padding-top: 0;
}

/* Breadcrumbs */
.articles-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0px;
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}

.articles-breadcrumbs-link {
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
}

.articles-breadcrumbs-link:hover {
  color: white;
}

.articles-breadcrumbs-separator {
  color: red;
  margin: 0 4px;
}

.articles-breadcrumbs-current {
  color: white;
}

/* Hero Section */
.articles-hero {
  position: relative;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 109px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.articles-hero-title {
  color: white;
  font-size: 48px;
  font-family: 'Benzin-Medium', sans-serif;
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
}

.articles-cart-icon {
  position: absolute;
  right: 0;
  top: -35px;
  width: 88px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.articles-cart-icon img {
  width: 73px;
  height: 71px;
  object-fit: contain;
}

/* Featured Article */
.articles-featured {
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.articles-featured-content {
  display: flex;
  gap: 47px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.articles-featured-text {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.articles-featured-title {
  font-size: 32px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: black;
  margin: 0;
  line-height: 1.3;
}

.articles-featured-date {
  font-size: 20px;
  font-family: 'Roboto', sans-serif;
  font-weight: 200;
  color: black;
}

.articles-featured-link {
  font-size: 20px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: #00868B;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.articles-featured-link:hover {
  opacity: 0.8;
}

.articles-featured-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: auto;
}

.articles-nav-btn {
  width: 72px;
  height: 72px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.articles-nav-btn:hover {
  transform: scale(1.1);
}

.articles-nav-btn-prev img {
  transform: rotate(180deg);
}

.articles-nav-btn img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.articles-featured-image {
  flex: 1;
  min-width: 300px;
  max-width: 726px;
}

.articles-featured-image img {
  width: 100%;
  height: 408px;
  object-fit: cover;
  border-radius: 15px;
}

/* Информационные блоки на странице событий */
.events-info-section {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.events-info-block {
  background: #ffffff;
  border-radius: 15px;
  padding: 25px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.events-info-block.animate-slide-up.animated {
  opacity: 1;
  transform: translateY(0);
}

.events-info-block-primary {
  border-left: 5px solid #00868B;
}

.events-info-block-secondary {
  border-left: 5px solid #FBBC04;
}

.events-info-block-header {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.events-info-block-title {
  font-size: 24px;
  font-family: 'Benzin-Medium', sans-serif;
  font-weight: 400;
  color: #000000;
  margin: 0;
  line-height: 1.3;
}

.events-info-block-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.events-info-block-text {
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  margin: 0;
}

.events-info-block-text-center {
  text-align: center;
  font-weight: 500;
  color: #00868B;
}

.events-info-block-subtitle {
  font-size: 20px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: #000000;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.events-info-block-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.events-info-block-list li {
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  padding-left: 25px;
  position: relative;
}

.events-info-block-list li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: #00868B;
  font-size: 20px;
  font-weight: bold;
}

.events-info-block-section {
  margin-top: 5px;
}

.events-info-block-link {
  color: #00868B;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.events-info-block-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.events-info-block-notice {
  background: #fff9e6;
  border-left: 4px solid #FBBC04;
  padding: 15px;
  border-radius: 8px;
  margin-top: 5px;
}

.events-info-block-notice-text {
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  margin: 0;
}

.events-info-block-notice-text strong {
  color: #000000;
  font-weight: 600;
}

.events-info-block-parking {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 5px;
}

.events-info-block-parking-item {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
}

.events-info-block-parking-title {
  font-size: 20px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: #00868B;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

/* Информационный блок о тарифах на главной странице */
.main-tariffs-section {
  width: 100%;
  padding: 40px 71px;
  position: relative;
  z-index: 100;
}

.main-tariffs-block {
  background: #ffffff;
  padding: 25px 30px;
  border-left: 5px solid #00868B;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.main-tariffs-block.animate-slide-up.animated {
  opacity: 1;
  transform: translateY(0);
}

.main-tariffs-header {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.main-tariffs-title {
  font-size: 24px;
  font-family: 'Benzin-Medium', sans-serif;
  font-weight: 400;
  color: #000000;
  margin: 0;
  line-height: 1.3;
}

.main-tariffs-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.main-tariffs-section-item {
  margin-top: 5px;
}

.main-tariffs-subtitle {
  font-size: 20px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: #000000;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.main-tariffs-text {
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  margin: 0;
}

.main-tariffs-text-center {
  text-align: center;
  font-weight: 500;
  color: #00868B;
}

.main-tariffs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.main-tariffs-list li {
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  padding-left: 25px;
  position: relative;
}

.main-tariffs-list li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: #00868B;
  font-size: 20px;
  font-weight: bold;
}

.main-tariffs-link {
  color: #00868B;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.main-tariffs-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.main-tariffs-notice {
  background: #fff9e6;
  border-left: 4px solid #FBBC04;
  padding: 15px;
  border-radius: 8px;
  margin-top: 5px;
}

.main-tariffs-notice-text {
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  margin: 0;
}

.main-tariffs-notice-text strong {
  color: #000000;
  font-weight: 600;
}

/* Articles Grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 63px;
  margin-bottom: 40px;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.articles-card {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.articles-card:first-child {
  padding-left: 0;
}

.articles-card:nth-child(3n) {
  padding-right: 0;
}

/* .articles-card::before {
  content: '';
  position: absolute;
  left: -12.5px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  width: 113px;
  height: 0;
  border-top: 2px solid black;
  display: none;
} */

.articles-card:not(:first-child):not(:nth-child(3n+1))::before {
  display: block;
}

.articles-card-image {
  width: 100%;
  height: 464px;
  border-radius: 15px;
  overflow: hidden;
}

.articles-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.articles-card-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 17px;
  text-decoration: none;
}

.articles-card-title {
  font-size: 24px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: black;
  margin: 0;
  line-height: 1.3;
  max-width: 85%;
}

.articles-card-date {
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  color: black;
}

.articles-card-more {
  position: absolute;
  right: 0;
  top: 0;
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.articles-card-more:hover {
  transform: scale(1.1);
}

.articles-card-more img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.articles-empty {
  text-align: center;
  padding: 60px 20px;
  color: #666;
  font-size: 24px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  grid-column: 1 / -1;
}

/* Footer */
.articles-footer {
  width: 100%;
  background: white;
  margin-top: 100px;
}

.articles-footer-divider {
  width: 100%;
  height: 2px;
  background: black;
}

.articles-footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 71px;
}

.articles-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.articles-footer-address {
  color: black;
  font-size: 24px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  max-width: 403px;
}

.articles-footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
}

.articles-footer-link {
  color: black;
  font-size: 24px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.articles-footer-link:hover {
  color: #00868B;
}

.articles-footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
}

.articles-footer-social img {
  width: 67px;
  height: 67px;
  object-fit: contain;
}

.articles-footer-menu {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.articles-footer-menu-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.articles-footer-menu-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.articles-footer-menu-title {
  color: black;
  font-size: 24px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.articles-footer-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.articles-footer-menu-links a {
  color: black;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 30px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.articles-footer-menu-links a:hover {
  color: #00868B;
}

.articles-footer-logo-box {
  width: 185px;
  height: 166px;
  background: #00868B;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto;
}

.articles-footer-logo-box img {
  width: 137px;
  height: 80px;
  object-fit: contain;
}

.articles-footer-bottom {
  width: 100%;
  background: #00868B;
  padding: 20px 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.articles-footer-copyright {
  color: white;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

.articles-footer-tax {
  color: white;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}
.highways-row-item-mobile{
display: none;
}

/* ============================================
 АДАПТИВНОСТЬ ДЛЯ СТРАНИЦЫ СТАТЕЙ
 ============================================ */

/* Планшеты (1024px и меньше) */
@media (max-width: 1024px) {
  .articles-header-container {
      padding: 20px;
  }

  .articles-header-nav {
      gap: 20px;
  }

  .articles-container {
      padding: 20px;
  }

  .articles-hero-title {
      font-size: 36px;
  }

  .articles-featured-content {
      gap: 30px;
  }

  .articles-featured-image {
      max-width: 100%;
  }

  .articles-featured-image img {
    height: 300px;
  }

  /* Адаптивные стили для информационных блоков событий (планшеты) */
  .events-info-section {
    margin-bottom: 35px;
    gap: 20px;
  }

  .events-info-block {
    padding: 20px 25px;
  }

  .events-info-block-header {
    margin-bottom: 15px;
    padding-bottom: 12px;
  }

  .events-info-block-title {
    font-size: 22px;
  }

  .events-info-block-content {
    gap: 12px;
  }

  .events-info-block-text {
    font-size: 16px;
  }

  .events-info-block-subtitle {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .events-info-block-list {
    gap: 6px;
  }

  .events-info-block-list li {
    font-size: 16px;
    padding-left: 22px;
  }

  .events-info-block-notice {
    padding: 12px;
  }

  .events-info-block-notice-text {
    font-size: 15px;
  }

  .events-info-block-parking {
    gap: 15px;
  }

  .events-info-block-parking-item {
    padding: 18px;
  }

  .events-info-block-parking-title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  


  .articles-card:first-child,
  .articles-card:nth-child(odd) {
      padding-left: 0;
  }

  .articles-card:nth-child(even) {
      padding-right: 0;
  }

  .articles-card:nth-child(3n) {
      padding-right: 10px;
  }

  .articles-card::before {
      display: none;
  }

  .articles-card:nth-child(even)::before {
      display: block;
      left: -10px;
      transform: translateY(-50%) rotate(90deg);
  }

  .articles-footer-container {
      padding: 30px 20px;
  }

  .articles-footer-content {
      flex-direction: column;
  }

  .articles-footer-contacts {
      align-items: flex-start;
  }

  .articles-footer-link {
      text-align: left;
  }
}

/* Мобильные устройства (768px и меньше) */
@media (max-width: 768px) {
  .articles-header {
      min-height: auto;
  }

  .articles-header-container {
      flex-direction: column;
      align-items: flex-start;
      padding: 20px;
      gap: 15px;
  }

  .articles-header-phone-box {
      width: 100%;
      max-width: 216px;
  }

  .articles-header-nav {
      width: 100%;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
  }

  .articles-header-menu-btn {
      position: absolute;
      top: 20px;
      right: 20px;
  }

  .articles-container {
      padding: 20px;
  }

  .articles-breadcrumbs {
      font-size: 16px;
      margin-bottom: 15px;
  }

  .articles-hero {
      margin-bottom: 75px;
  }

  .articles-hero-title {
      font-size: 28px;
  }

  .articles-cart-icon {
    top: -84px;
  }
  

  .articles-featured {
      margin-bottom: 50px;
  }

  .articles-featured-content {
      flex-direction: column;
      gap: 30px;
  }

  .articles-featured-text {
      width: 100%;
  }

  .articles-featured-title {
      font-size: 24px;
  }

  .articles-featured-date {
      font-size: 18px;
  }

  .articles-featured-link {
      font-size: 18px;
  }

  .articles-featured-image {
      width: 100%;
  }

  .articles-featured-image img {
      height: 250px;
  }

  .articles-featured-nav {
      justify-content: center;
  }

  /* Адаптивные стили для информационных блоков событий (мобильные) */
  .events-info-section {
    margin-bottom: 30px;
    gap: 20px;
  }

  .events-info-block {
    padding: 20px;
  }

  .events-info-block-header {
    margin-bottom: 15px;
    padding-bottom: 12px;
  }

  .events-info-block-title {
    font-size: 20px;
  }

  .events-info-block-content {
    gap: 12px;
  }

  .events-info-block-text {
    font-size: 15px;
    line-height: 1.4;
  }

  .events-info-block-subtitle {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .events-info-block-list {
    gap: 6px;
  }

  .events-info-block-list li {
    font-size: 15px;
    padding-left: 22px;
    line-height: 1.4;
  }

  .events-info-block-list li::before {
    left: 6px;
    font-size: 18px;
  }

  .events-info-block-notice {
    padding: 12px;
  }

  .events-info-block-notice-text {
    font-size: 14px;
    line-height: 1.4;
  }

  .events-info-block-parking {
    gap: 15px;
  }

  .events-info-block-parking-item {
    padding: 15px;
  }

  .events-info-block-parking-title {
    font-size: 17px;
    margin-bottom: 8px;
  }

  

  .articles-card::before {
      display: none;
  }

  .articles-card-image {
      height: 300px;
  }
  .articles-card-title {
      font-size: 20px;
              max-width: 85%;
  }

  .articles-card-date {
      font-size: 16px;
  }

  .articles-footer-container {
      padding: 20px;
  }

  .articles-footer-content {
      flex-direction: column;
      margin-bottom: 30px;
  }

  .articles-footer-address {
      font-size: 18px;
  }

  .articles-footer-link {
      font-size: 18px;
  }

  .articles-footer-menu {
      flex-direction: column;
      gap: 30px;
  }

  .articles-footer-logo-box {
      width: 150px;
      height: 135px;
  }

  .articles-footer-logo-box img {
      width: 110px;
      height: 65px;
  }

  .articles-footer-bottom {
      flex-direction: column;
      padding: 20px;
      text-align: center;
  }

  .articles-footer-copyright,
  .articles-footer-tax {
      font-size: 14px;
  }
}

/* Маленькие мобильные устройства (480px и меньше) */
/* @media (max-width: 480px) {
  .articles-header-container {
      padding: 15px;
  }

  .articles-header-phone-box {
      height: 60px;
      padding: 8px 15px;
  }

  .articles-header-phone {
      font-size: 13px;
  }

  .articles-header-logo {
      width: 70px;
      height: 40px;
  }

  .articles-header-nav-item {
      font-size: 14px;
  }

  .articles-container {
      padding: 15px;
  }

  .articles-breadcrumbs {
      font-size: 14px;
  }

  .articles-hero-title {
      font-size: 24px;
  }

  .articles-featured-title {
      font-size: 20px;
  }

  .articles-featured-date {
      font-size: 16px;
  }

  .articles-featured-link {
      font-size: 16px;
  }

  .articles-featured-image img {
      height: 200px;
  }

  .articles-nav-btn {
      width: 50px;
      height: 50px;
  }

  .articles-nav-btn img {
      width: 50px;
      height: 50px;
  }

  .articles-card-image {
      height: 250px;
  }

  .articles-card-title {
      font-size: 18px;
  }

  .articles-card-date {
      font-size: 14px;
  }

  .articles-card-more {
      width: 32px;
      height: 32px;
  }

  .articles-card-more img {
      width: 32px;
      height: 32px;
  }

  .articles-footer-address {
      font-size: 16px;
  }

  .articles-footer-link {
      font-size: 16px;
  }

  .articles-footer-menu-title {
      font-size: 20px;
  }

  .articles-footer-menu-links a {
      font-size: 14px;
      line-height: 24px;
  }

  .articles-footer-logo-box {
      width: 120px;
      height: 108px;
  }

  .articles-footer-logo-box img {
      width: 88px;
      height: 52px;
  }
} */

/* ============================================
 СТИЛИ ДЛЯ СТРАНИЦЫ LIVE КАМЕР
 ============================================ */

.live-page {
  width: 100%;
  min-height: 100vh;
  background: white;
  position: relative;
  overflow-x: hidden;
}

/* Header */
.page-header {
  position: relative;
  width: 100%;
  margin-bottom: 0;
  padding: 0;
  box-sizing: border-box;
  
}
.page-header-wrapper{
width: 100%;
box-sizing: border-box;
padding: 37px;
position: relative;
padding-bottom: 0;
margin-bottom: 45px;
}
.page-header-wrapper .spec-nagition{
position: relative;
top: 0;
margin: 0;
width: 100%;
}
.page-header-wrapper .rectangle{
  right: -9px;
  top: 30px;
  width: unset;
}
.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 275px;
  height: 275px;
  background: #00868B;
  z-index: 0;
}

.page-header-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/img/top.png');
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.live-header-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 37px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.live-header-phone-box {
  background: white;
  border-radius: 15px;
  padding: 10px 20px;
  height: 71px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.live-header-phone {
  color: black;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  text-decoration: underline;
  white-space: nowrap;
}

.live-header-logo {
  width: 91px;
  height: 53px;
  object-fit: contain;
  flex-shrink: 0;
}

.live-header-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.live-header-nav-item {
  color: white;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.live-header-nav-item:hover {
  opacity: 0.8;
}

.live-header-nav-item-active {
  font-family: 'Inter', sans-serif;
}

.live-header-menu-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: black;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}

.live-header-menu-btn img {
  width: 27px;
  height: 27px;
}

/* Main Content */
.live-main {
  width: 100%;
  position: relative;
}

.live-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 71px 40px;
  padding-top: 0;
}

/* Hero Section */
.live-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  margin-bottom: 119px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.live-hero-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.live-hero-indicator {
  width: 25px;
  height: 25px;
  background: red;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
      opacity: 1;
  }
  50% {
      opacity: 0.5;
  }
}

.live-hero-title {
  color: white;
  font-size: 48px;
  font-family: 'Benzin-Medium', sans-serif;
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
}

.live-hero-subtitle {
  color: white;
  font-size: 24px;
  font-family: 'Benzin-Regular', sans-serif;
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
}

.live-cart-icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 88px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.live-cart-icon img {
  width: 73px;
  height: 71px;
  object-fit: contain;
}

/* Main Content Area */
.live-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Sidebar */
.live-sidebar {
  flex: 0 0 475px;
  min-width: 300px;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.live-sidebar-title {
  font-size: 28px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: black;
  margin: 0 0 20px 0;
}

.live-camera-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: white;
  border-radius: 15px;
  padding: 0;
}

.live-camera-item {
  width: 100%;
  padding: 20px 25px;
  background: white;
  border: none;
  border-radius: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  margin-bottom: 0;
  position: relative;
}

.live-camera-item:first-child {

  border-radius: 15px 15px 0 0;
}

.live-camera-item:last-child {
  border-radius: 0 0 15px 15px;
}

.live-camera-item:not(:first-child) {
  color: black;
}

.live-camera-item:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25px;
  right: 25px;
  height: 2px;
  background: black;
}

.live-camera-item:hover {
  background: #f5f5f5;
  transform: translateX(5px);
}


.live-camera-name {
  font-size: 24px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.live-camera-altitude {
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}

.live-camera-item-active {
  background: #00868B;
  color: white !important;
}

.live-camera-item-active:hover {
  background: #006d71;
  color: white !important;
}

/* Video Player */
.live-player {
  flex: 1;
  min-width: 300px;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.live-player-container {
  position: relative;
  width: 100%;
  padding-bottom: 66.67%;
  border-radius: 15px;
  overflow: hidden;
  background: black;
}

.live-player-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.live-player-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-player-overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.live-player-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  width: 123px;
  height: 111px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: transform 0.3s ease;
}

.live-player-play-btn:hover {
  transform: translate(-50%, -50%) rotate(90deg) scale(1.1);
}

.live-player-play-icon {
  width: 0;
  height: 0;
  border-left: 40px solid white;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  margin-left: 10px;
}

/* Footer */
.live-footer {
  width: 100%;
  background: white;
  margin-top: 100px;
}

.live-footer-divider {
  width: 100%;
  height: 2px;
  background: black;
}

.live-footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 71px;
}

.live-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.live-footer-address {
  color: black;
  font-size: 24px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  max-width: 403px;
}

.live-footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
}

.live-footer-link {
  color: black;
  font-size: 24px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.live-footer-link:hover {
  color: #00868B;
}

.live-footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
}

.live-footer-social img {
  width: 67px;
  height: 67px;
  object-fit: contain;
}

.live-footer-menu {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.live-footer-menu-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.live-footer-menu-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.live-footer-menu-title {
  color: black;
  font-size: 24px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.live-footer-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.live-footer-menu-links a {
  color: black;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 30px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.live-footer-menu-links a:hover {
  color: #00868B;
}

.live-footer-logo-box {
  width: 185px;
  height: 166px;
  background: #00868B;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto;
}

.live-footer-logo-box img {
  width: 137px;
  height: 80px;
  object-fit: contain;
}

.live-footer-bottom {
  width: 100%;
  background: #00868B;
  padding: 20px 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.live-footer-copyright {
  color: white;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

.live-footer-tax {
  color: white;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

/* ============================================
 АДАПТИВНОСТЬ ДЛЯ СТРАНИЦЫ LIVE
 ============================================ */

/* Планшеты (1024px и меньше) */
@media (max-width: 1024px) {
  .live-header-container {
      padding: 20px;
  }

  .live-header-nav {
      gap: 20px;
  }

  .live-container {
      padding: 20px;
  }

  .live-hero-title {
      font-size: 36px;
  }

  .live-hero-subtitle {
      font-size: 20px;
  }

  .live-content {
      flex-direction: column;
      gap: 30px;
  }

  .live-sidebar {
      flex: 1 1 100%;
      width: 100%;
  }

  .live-player {
      width: 100%;
  }

  .live-footer-container {
      padding: 30px 20px;
  }

  .live-footer-content {
      flex-direction: column;
  }

  .live-footer-contacts {
      align-items: flex-start;
  }

  .live-footer-link {
      text-align: left;
  }
}

/* Мобильные устройства (768px и меньше) */
@media (max-width: 768px) {
  .live-header {
      min-height: auto;
  }

  .live-header-container {
      flex-direction: column;
      align-items: flex-start;
      padding: 20px;
      gap: 15px;
  }

  .live-header-phone-box {
      width: 100%;
      max-width: 216px;
  }

  .live-header-nav {
      width: 100%;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
  }

  .live-header-menu-btn {
      position: absolute;
      top: 20px;
      right: 20px;
  }

  .live-container {
      padding: 20px;
      padding-top: 0;
  }

  .live-hero {
      margin-bottom: 75px;
  }

  .live-hero-title {
      font-size: 28px;
  }

  .live-hero-subtitle {
      font-size: 16px;
  }

  .live-hero-indicator {
      width: 20px;
      height: 20px;
  }

  .live-cart-icon {
      display: none;
  }

  .live-content {
      flex-direction: column;
      gap: 30px;
  }

  .live-sidebar {
      width: 100%;
  }

  .live-sidebar-title {
      font-size: 24px;
  }

  .live-camera-item {
      padding: 15px 20px;
  }

  .live-camera-name {
      font-size: 20px;
  }

  .live-camera-altitude {
      font-size: 16px;
  }

  .live-player-container {
      padding-bottom: 56.25%;
  }

  .live-player-play-btn {
      width: 80px;
      height: 80px;
  }

  .live-player-play-icon {
      border-left-width: 30px;
      border-top-width: 18px;
      border-bottom-width: 18px;
  }

  .live-footer-container {
      padding: 20px;
  }

  .live-footer-content {
      flex-direction: column;
      margin-bottom: 30px;
  }

  .live-footer-address {
      font-size: 18px;
  }

  .live-footer-link {
      font-size: 18px;
  }

  .live-footer-menu {
      flex-direction: column;
      gap: 30px;
  }

  .live-footer-logo-box {
      width: 150px;
      height: 135px;
  }

  .live-footer-logo-box img {
      width: 110px;
      height: 65px;
  }

  .live-footer-bottom {
      flex-direction: column;
      padding: 20px;
      text-align: center;
  }

  .live-footer-copyright,
  .live-footer-tax {
      font-size: 14px;
  }
}

/* Маленькие мобильные устройства (480px и меньше) */
/* @media (max-width: 480px) {
  .live-header-container {
      padding: 15px;
  }

  .live-header-phone-box {
      height: 60px;
      padding: 8px 15px;
  }

  .live-header-phone {
      font-size: 13px;
  }

  .live-header-logo {
      width: 70px;
      height: 40px;
  }

  .live-header-nav-item {
      font-size: 14px;
  }

  .live-container {
      padding: 15px;
  }

  .live-hero-title {
      font-size: 24px;
  }

  .live-hero-subtitle {
      font-size: 16px;
  }

  .live-hero-indicator {
      width: 16px;
      height: 16px;
  }

  .live-sidebar-title {
      font-size: 20px;
  }

  .live-camera-item {
      padding: 12px 15px;
  }

  .live-camera-name {
      font-size: 18px;
  }

  .live-camera-altitude {
      font-size: 14px;
  }

  .live-player-play-btn {
      width: 60px;
      height: 60px;
  }

  .live-player-play-icon {
      border-left-width: 20px;
      border-top-width: 12px;
      border-bottom-width: 12px;
  }

  .live-footer-address {
      font-size: 16px;
  }

  .live-footer-link {
      font-size: 16px;
  }

  .live-footer-menu-title {
      font-size: 20px;
  }

  .live-footer-menu-links a {
      font-size: 14px;
      line-height: 24px;
  }

  .live-footer-logo-box {
      width: 120px;
      height: 108px;
  }

  .live-footer-logo-box img {
      width: 88px;
      height: 52px;
  }
} */

/* ============================================
 СТИЛИ ДЛЯ СТРАНИЦЫ ОТДЕЛЬНОЙ СТАТЬИ
 ============================================ */

.article-page {
  width: 100%;
  min-height: 100vh;
  background: white;
  position: relative;
  overflow-x: hidden;
}

/* Header */
.article-header {
  position: relative;
  width: 100%;
  min-height: 253px;
  background: #00868B;
  margin-bottom: 0;
}

.article-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00868B;
  z-index: 0;
}

.article-header-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/img/top.png');
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.article-header-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 37px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.article-header-phone-box {
  background: white;
  border-radius: 15px;
  padding: 10px 20px;
  height: 71px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-header-phone {
  color: black;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  text-decoration: underline;
  white-space: nowrap;
}

.article-header-logo {
  width: 91px;
  height: 53px;
  object-fit: contain;
  flex-shrink: 0;
}

.article-header-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.article-header-nav-item {
  color: white;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.article-header-nav-item:hover {
  opacity: 0.8;
}

.article-header-nav-item-active {
  font-family: 'Inter', sans-serif;
}

.article-header-menu-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: black;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}

.article-header-menu-btn img {
  width: 27px;
  height: 27px;
}

/* Main Content */
.article-main {
  width: 100%;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.article-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 71px 40px;
}

/* Breadcrumbs */
.article-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.article-breadcrumbs-link {
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-breadcrumbs-link:hover {
  color: white;
}

.article-breadcrumbs-separator {
  color: red;
  margin: 0 4px;
}

.article-breadcrumbs-current {
  color: white;
}

/* Article Title */
.article-title {
  color: white;
  font-size: 36px;
  font-family: 'Benzin-Medium', sans-serif;
  font-weight: 400;
  margin: 0 0 90px 0;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Article Content Wrapper */
.article-content-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 60px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Text Content */
.article-content {
  flex: 1;
  min-width: 300px;
  max-width: 100%;
  font-family: Roboto;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
}

.article-content-title {
  font-size: 24px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: black;
  margin: 0 0 24px 0;
  line-height: 36px;
}

.article-content-subtitle {
  font-size: 24px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: black;
  margin: 0 0 24px 0;
  line-height: 36px;
}

.article-content-text {
  font-size: 24px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: black;
  margin: 0 0 24px 0;
  line-height: 36px;
}

.article-content-section {
  margin-top: 24px;
}

.article-content-section-title {
  font-size: 24px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: black;
  margin: 0 0 24px 0;
  line-height: 36px;
}

.article-content-list {
  font-size: 24px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: black;
  line-height: 36px;
  margin: 0 0 24px 0;
  padding-left: 36px;
  list-style-type: disc;
}

.article-content-list li {
  margin-bottom: 0;
}

/* Стили для страницы "О курорте" */
.about-section {
  margin-bottom: 60px;
}

.about-table-container {
  width: 100%;
  overflow-x: auto;
  margin: 30px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  background: #ffffff;
}

.about-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  background: #ffffff;
}

.about-table thead {
  background: #00868B;
  color: #ffffff;
}

.about-table th {
  padding: 20px 15px;
  text-align: left;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  border: 1px solid rgba(255, 255, 255, 0.2);
  vertical-align: middle;
}

.about-table-period-header {
  text-align: center;
  font-weight: 600;
}

.about-table tbody tr {
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.2s ease;
}

.about-table tbody tr:hover {
  background-color: #f8f9fa;
}

.about-table tbody tr:last-child {
  border-bottom: none;
}

.about-table td {
  padding: 18px 15px;
  text-align: left;
  font-size: 18px;
  line-height: 1.6;
  color: #333333;
  border: 1px solid #e0e0e0;
  vertical-align: top;
}

.about-table td:first-child {
  text-align: center;
  font-weight: 600;
  color: #00868B;
  width: 60px;
}

.about-table-note {
  font-size: 16px;
  line-height: 1.6;
  color: #666666;
  font-style: italic;
  background: #f8f9fa;
}

.about-table sup {
  font-size: 14px;
  vertical-align: super;
}

/* Стили для блока пояснений по сноскам */
.about-footnotes-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #e0e0e0;
}

.about-footnotes {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.about-footnote-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.about-footnote-number {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #00868B;
  flex-shrink: 0;
  line-height: 1.6;
}

.about-footnote-text {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  line-height: 1.6;
  margin: 0;
}

.about-footnote-vat {
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.about-footnote-vat .about-footnote-text {
  font-weight: 500;
  color: #000000;
}

/* Стили для блока документов */
.about-documents-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #e0e0e0;
}

.about-documents {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-document-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  background: #ffffff;
  border: 2px solid #00868B;
  border-radius: 10px;
  text-decoration: none;
  color: #333333;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.about-document-link:hover {
  background: #00868B;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 134, 139, 0.3);
}

.about-document-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke: currentColor;
  transition: transform 0.3s ease;
}

.about-document-link:hover .about-document-icon {
  transform: scale(1.1);
}

.about-document-text {
  flex: 1;
  line-height: 1.5;
}

/* Адаптивные стили для таблиц на странице "О курорте" */
@media (max-width: 1024px) {
  .about-table {
    font-size: 16px;
  }
  
  .about-table th,
  .about-table td {
    padding: 15px 12px;
    font-size: 16px;
  }
  
  .about-table th {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .article-container {
    padding: 20px 20px 40px;
  }
  
  .article-title {
    font-size: 28px;
    margin: 0 0 40px 0;
  }
  
  .article-content-subtitle {
    font-size: 18px;
    line-height: 1.5;
  }
  
  .article-content-text {
    font-size: 18px;
    line-height: 1.6;
  }
  
  .article-content-section-title {
    font-size: 20px;
    line-height: 1.4;
  }
  
  .about-section {
    margin-bottom: 40px;
  }
  
  .about-table-container {
    margin: 20px 0;
    border-radius: 10px;
  }
  
  .about-table {
    font-size: 14px;
  }
  
  .about-table th,
  .about-table td {
    padding: 12px 8px;
    font-size: 14px;
    line-height: 1.4;
  }
  
  .about-table th {
    font-size: 14px;
    padding: 12px 8px;
  }
  
  .about-table td:first-child {
    width: 40px;
  }
  
  .about-table-note {
    font-size: 13px;
    line-height: 1.5;
  }
  
  .about-table-period-header {
    font-size: 13px;
  }
  
  .about-footnotes-section {
    margin-top: 40px;
    padding-top: 30px;
  }
  
  .about-footnotes {
    gap: 20px;
  }
  
  .about-footnote-item {
    gap: 12px;
  }
  
  .about-footnote-number {
    font-size: 16px;
  }
  
  .about-footnote-text {
    font-size: 16px;
    line-height: 1.5;
  }
  
  .about-footnote-vat {
    margin-top: 8px;
    padding-top: 15px;
  }
  
  .about-documents-section {
    margin-top: 40px;
    padding-top: 30px;
  }
  
  .about-documents {
    gap: 15px;
  }
  
  .about-document-link {
    padding: 15px 20px;
    font-size: 16px;
  }
  
  .about-document-icon {
    width: 20px;
    height: 20px;
  }
}

/* Main Image */
.article-image-main {
  flex: 0 0 597px;
  min-width: 300px;
  max-width: 100%;
}

.article-image-main img {
  width: 100%;
  height: 662px;
  object-fit: cover;
  border-radius: 15px;
  position: relative;
}

/* Gallery */
.article-gallery {
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.article-gallery-container {
  position: relative;
  display: flex;
  gap: 29px;
  align-items: center;
  flex-wrap: wrap;
}

.article-gallery-images {
  display: flex;
  gap: 29px;
  flex: 1;
  min-width: 300px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.article-gallery-images::-webkit-scrollbar {
  display: none;
}

.article-gallery-item {
  flex: 0 0 548px;
  min-width: 300px;
  scroll-snap-align: start;
}

.article-gallery-item img {
  width: 100%;
  height: 284px;
  object-fit: cover;
  border-radius: 15px;
}

.article-gallery-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 15px;
  padding: 20px;
  height: 284px;
  width: 215px;
  flex-shrink: 0;
}

.article-gallery-nav-btn {
  width: 72px;
  height: 72px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.article-gallery-nav-btn:hover {
  transform: scale(1.1);
}

.article-gallery-nav-prev img {
  transform: rotate(180deg);
}

.article-gallery-nav-btn img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

/* Footer */
.article-footer {
  width: 100%;
  background: white;
  margin-top: 100px;
}

.article-footer-divider {
  width: 100%;
  height: 2px;
  background: black;
}

.article-footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 71px;
}

.article-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.article-footer-address {
  color: black;
  font-size: 24px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  max-width: 403px;
}

.article-footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
}

.article-footer-link {
  color: black;
  font-size: 24px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.article-footer-link:hover {
  color: #00868B;
}

.article-footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
}

.article-footer-social img {
  width: 67px;
  height: 67px;
  object-fit: contain;
}

.article-footer-menu {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.article-footer-menu-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.article-footer-menu-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.article-footer-menu-title {
  color: black;
  font-size: 24px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.article-footer-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.article-footer-menu-links a {
  color: black;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 30px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-footer-menu-links a:hover {
  color: #00868B;
}

.article-footer-logo-box {
  width: 185px;
  height: 166px;
  background: #00868B;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto;
}

.article-footer-logo-box img {
  width: 137px;
  height: 80px;
  object-fit: contain;
}

.article-footer-bottom {
  width: 100%;
  background: #00868B;
  padding: 20px 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.article-footer-copyright {
  color: white;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

.article-footer-tax {
  color: white;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

/* ============================================
 АДАПТИВНОСТЬ ДЛЯ СТРАНИЦЫ СТАТЬИ
 ============================================ */

/* Планшеты (1024px и меньше) */
@media (max-width: 1024px) {
  .article-header-container {
      padding: 20px;
  }

  .article-header-nav {
      gap: 20px;
  }

  .article-container {
      padding: 20px;
  }

  .article-title {
      font-size: 32px;
  }

  .article-content-wrapper {
      flex-direction: column;
  }

  .article-image-main {
      flex: 1 1 100%;
      width: 100%;
  }

  .article-image-main img {
      height: 400px;
  }

  .article-gallery-container {
      flex-direction: column;
  }

  .article-gallery-nav {
      width: 100%;
      height: auto;
      flex-direction: row;
      justify-content: center;
  }

  .article-footer-container {
      padding: 30px 20px;
  }

  .article-footer-content {
      flex-direction: column;
  }

  .article-footer-contacts {
      align-items: flex-start;
  }

  .article-footer-link {
      text-align: left;
  }
}

/* Мобильные устройства (768px и меньше) */
@media (max-width: 768px) {
  .article-header {
      min-height: auto;
  }

  .article-header-container {
      flex-direction: column;
      align-items: flex-start;
      padding: 20px;
      gap: 15px;
  }

  .article-header-phone-box {
      width: 100%;
      max-width: 216px;
  }

  .article-header-nav {
      width: 100%;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
  }

  .article-header-menu-btn {
      position: absolute;
      top: 20px;
      right: 20px;
  }

  .article-container {
      padding: 20px;
  }

  .article-breadcrumbs {
      font-size: 16px;
      margin-bottom: 15px;
      white-space: nowrap;
      overflow-x: scroll;
      overflow-y: hidden;
  }

  .article-title {
      font-size: 28px;
      margin-bottom: 50px;
      white-space: nowrap;
      overflow-x: scroll;
      max-width: 100%;
      overflow-y: hidden;
  }

  .article-content-wrapper {
      margin-bottom: 40px;
  }

  .article-content-title,
  .article-content-subtitle,
  .article-content-text,
  .article-content-section-title {
      font-size: 20px;
      line-height: 30px;
  }

  .article-content-list {
      font-size: 20px;
      line-height: 30px;
      padding-left: 24px;
  }

  .article-image-main {
      width: 100%;
  }

  .article-image-main img {
      height: 300px;
      top: 0;
  }
  .article-content{
      font-size: 16px;
      line-height: 18px;
  }
  .article-gallery-images{
    gap: 10px;
  }

  .article-gallery-item {
      flex: 0 0 90%;
      min-width: 90%;
  }

  .article-gallery-item img {
      height: 200px;
  }

  .article-gallery-nav {
      width: 100%;
      height: auto;
      padding: 15px;
      box-sizing: border-box;
      gap: 0px;
  }

  .article-footer-container {
      padding: 20px;
  }

  .article-footer-content {
      flex-direction: column;
      margin-bottom: 30px;
  }

  .article-footer-address {
      font-size: 18px;
  }

  .article-footer-link {
      font-size: 18px;
  }

  .article-footer-menu {
      flex-direction: column;
      gap: 30px;
  }

  .article-footer-logo-box {
      width: 150px;
      height: 135px;
  }

  .article-footer-logo-box img {
      width: 110px;
      height: 65px;
  }

  .article-footer-bottom {
      flex-direction: column;
      padding: 20px;
      text-align: center;
  }

  .article-footer-copyright,
  .article-footer-tax {
      font-size: 14px;
  }
}


/* ============================================
 СТИЛИ ДЛЯ СЛАЙДЕРА СКИ-ПАССОВ
 ============================================ */

.ski-passes-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 35px;
}

.ski-passes-slider-track {
  flex: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  gap: 25px;
  align-items: flex-start;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
  width: 100%;
}

.ski-passes-slider-slide {
  flex-shrink: 0;
  display: flex;
}

.ski-passes-slider-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 40px;
  position: relative;
  width: 72px;
  z-index: 33;
}

.ski-passes-slider-nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ski-passes-slider-nav-btn:hover:not(:disabled) {
  opacity: 0.7;
}

.ski-passes-slider-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.ski-passes-slider-nav-btn:focus {
  outline: 2px solid #00868b;
  outline-offset: 2px;
  border-radius: 4px;
}

.ski-passes-slider-slide .image-75 {
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  min-width: 0;
  height: 492px;
  background-size: cover;
  background-position: center;
  z-index: 37;
  border-radius: 15px;
  overflow: hidden;
}

.ski-passes-slider-slide .image-75 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

:root {
  --default-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC",
    "Hiragino Sans GB", "Microsoft Yahei UI", "Microsoft Yahei",
    "Source Han Sans CN", sans-serif;
}

.main-container {
  overflow: hidden;
}

.main-container,
.main-container * {
  box-sizing: border-box;
}

input,
select,
textarea,
button {
  outline: 0;
}

.main-container {
  position: relative;
  margin: 0 auto;
  background: #ffffff;
  overflow: hidden;
}
.flex-row-d {
  position: relative;
  padding: 0;
  z-index: 425;
}
.rectangle {
  position: absolute;
  width: 216px;
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  top: 37px;
  right: 29px;
  background: #ffffff;
  z-index: 1002;
  border-radius: 15px;
  display: flex;
  align-items: center;
  padding: 15px 25px;
  height: unset;
}
.contact-info {
  height: unset;
  display: flex;
  align-items: center;
  gap: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  height: 18px;
  top: 27px;
  left: 42px;
  color: #000000 !important;
  font-family: Roboto, var(--default-font-family);
  font-size: 15px;
  font-weight: 600;
  line-height: 17.578px;
  text-align: left;
  text-decoration: underline;
  white-space: nowrap;
  z-index: 213;
  cursor: pointer;
  transition: opacity 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  height: unset;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-info:link,
.contact-info:visited,
.contact-info:hover,
.contact-info:active {
  color: #000000 !important;
  -webkit-tap-highlight-color: transparent;
}
.contact-info:hover {
  opacity: 0.8;
}

.contact-info:visited {
  color: #000000;
}
.rectangle-1 {
  position: relative;
  width: 100%;
  height: 741px;
  top: 0;
  left: 0;
  background: #d9d9d9;
  z-index: 210;
  overflow: hidden;
}
.image {
  position: absolute;
  width: 100%;
  height: 741px;
  top: 0;
  left: 0;
  background-size: cover;
  z-index: 211;
  text-decoration: none !important;
}

/* ============================================
 СТИЛИ ДЛЯ СЛАЙДЕРА БАННЕРОВ
 ============================================ */

.main-slider {
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
}

.main-slider-container {
position: relative;
width: 100%;
height: 100%;
}

.main-slider-slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 0.5s ease-in-out;
z-index: 1;
}

.main-slider-slide-active {
opacity: 1;
z-index: 2;
}

.main-slider-link {
display: block;
width: 100%;
height: 100%;
text-decoration: none;
color: inherit;
}

.main-slider-image {
position: relative;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
display: flex;
align-items: center;
justify-content: center;
}

.main-slider-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.3);
z-index: 1;
}

.main-slider-content {
position: relative;
z-index: 2;
text-align: center;
color: #ffffff;
padding: 40px;
max-width: 800px;
}

.main-slider-title {
font-family: 'Benzin-Medium', var(--default-font-family);
font-size: 48px;
font-weight: 400;
margin: 0 0 20px 0;
color: #ffffff;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.main-slider-subtitle {
font-family: 'Roboto', var(--default-font-family);
font-size: 24px;
font-weight: 400;
margin: 0;
color: #ffffff;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.main-slider-nav {
position: absolute;
top: 40%;
width: 100%;
display: flex;
justify-content: space-between;
padding: 0 37px;
z-index: 10;
pointer-events: none;
opacity: 0;
transform: translateY(-50%) scale(0.8);
transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.main-slider-nav-btn {
width: 50px;
height: 50px;
border: none;
background: rgba(255, 255, 255, 0.8);
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
pointer-events: all;
z-index: 11;
}

.main-slider-nav-btn:hover {
background: rgba(255, 255, 255, 1);
transform: scale(1.1);
}

.main-slider-nav-btn img {
width: 24px;
height: 24px;
object-fit: contain;
}

.main-slider-nav-prev img {
transform: rotate(180deg);
}

.main-slider-dots {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 10px;
z-index: 10;
}

.main-slider-dot {
width: 12px;
height: 12px;
border: 2px solid #ffffff;
border-radius: 50%;
background: transparent;
cursor: pointer;
transition: all 0.3s ease;
padding: 0;
}

.main-slider-dot:hover {
background: rgba(255, 255, 255, 0.5);
}

.main-slider-dot-active {
background: #ffffff;
}

/* ============================================
 СТИЛИ ДЛЯ ФИЛЬТРОВ ТРАСС
 ============================================ */

.highway-filter-btn {
background: none;
border: none;
padding: 0;
margin: 0;
cursor: pointer;
transition: all 0.3s ease;
font-family: inherit;
text-align: left;
}

.highway-filter-btn:hover {
opacity: 0.8;
transform: translateY(-2px);
}

.highway-filter-btn-active {
opacity: 1;
font-weight: 600;
}

.highway-filter-btn-active .frame-21,
.highway-filter-btn-active .frame-23,
.highway-filter-btn-active .frame-25 {
opacity: 1;
background: #00868B;
color: white;
outline: none !important;
}

.highway-filter-btn-active .eco-routes,
.highway-filter-btn-active .lifts,
.highway-filter-btn-active .trails {
color: white !important;
}

.highway-filter-btn-active span {
color: white !important;
}

.highway-filter-btn:focus {
outline: 2px solid #00868b;
outline-offset: 2px;
}

.highway-difficulty-easy {
background: #34A853;
}

.highway-difficulty-medium {
background: #FBBC04;
}

.highway-difficulty-hard {
background: #EA4335;
}

.highways-empty {
width: 100%;
padding: 40px 20px;
text-align: center;
color: #666;
font-family: 'Roboto', var(--default-font-family);
font-size: 18px;
}

.highways-empty p {
margin: 0;
}

@media (max-width: 768px) {
.highways-empty {
  padding: 30px 15px;
  font-size: 16px;
}
}

/* @media (max-width: 480px) {
.highways-empty {
  padding: 20px 10px;
  font-size: 14px;
}
} */

.closed {
color: #F44336;
align-self: stretch;
flex-shrink: 0;
flex-basis: auto;
position: relative;
min-width: 0;
height: 17.286px;
font-family: Roboto, var(--default-font-family);
font-size: 18px;
font-weight: 400;
line-height: 17.286px;
text-align: left;
white-space: nowrap;
z-index: 268;
}



/* Адаптивные стили для слайдера */
@media (max-width: 1024px) {
.main-slider-title {
  font-size: 36px;
}

.main-slider-subtitle {
  font-size: 20px;
}

.main-slider-content {
  padding: 30px 20px;
}
}

@media (max-width: 768px) {
.main-slider-title {
  font-size: 28px;
}

.main-slider-subtitle {
  font-size: 18px;
}

.main-slider-content {
  padding: 20px 15px;
}


.main-slider-nav-btn {
  width: 28px;
  height: 65px;
  border-radius: 5px;
  background: white;
}

.main-slider-nav-btn img {
  width: 20px;
  height: 20px;
}

.main-slider-dots {
  bottom: 15px;
}

.main-slider-dot {
  width: 10px;
  height: 10px;
}
}


.flex-row {
  position: absolute;
  width: 93%;
  height: 53px;
  margin: 9px 9px 0 9px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 37px;
}

.flex-row.spec-nagition {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.image-2 {
  position: absolute;
  width: 91px;
  height: 53px;
  top: 0;
  left: 0;
  background: url(/assets/img/main.webp)
    no-repeat center;
  background-size: cover;
  z-index: 215;
}
.frame {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 61px;
  width: 783px;
  height: 31px;
  z-index: 217;
}
.lifts-trails {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 18px;
  color: #ffffff;
  font-family: Roboto, var(--default-font-family);
  font-size: 15px;
  font-weight: 600;
  line-height: 17.578px;
  text-align: left;
  white-space: nowrap;
  z-index: 218;
}
.events {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 64px;
  height: 18px;
  color: #ffffff;
  font-family: Roboto, var(--default-font-family);
  font-size: 15px;
  font-weight: 600;
  line-height: 17.578px;
  text-align: left;
  white-space: nowrap;
  z-index: 219;
}
.rectangle-3 {
  position: relative;
  width: 103px;
  height: 31px;
  background: #ffffff;
  z-index: 220;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}
.menu-dropdown-container {
  position: relative;
  cursor: pointer;
}
.menu-dropdown {
  position: fixed;
  left: 1vw;
  width: 86vw;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
  padding: 30px 40px;
  border-radius: 10px;
  top: 105px;
}
.menu-dropdown-container:hover .menu-dropdown,
.menu-dropdown-container.menu-dropdown-open .menu-dropdown {
  opacity: 1;
  visibility: visible;
}
.menu-dropdown-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}
.menu-dropdown-category {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}
.menu-dropdown-category-title {
  font-family: Roboto, var(--default-font-family);
  font-size: 18px;
  font-weight: 700;
  color: #00868B;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #00868B;
}
.menu-dropdown-category-pages {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.menu-dropdown-page-link {
  font-family: Roboto, var(--default-font-family);
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.menu-dropdown-page-link:hover {
  color: #00868B;
  padding-left: 10px;
}
.cameras {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 18px;
  color: #ffffff;
  font-family: Roboto, var(--default-font-family);
  font-size: 15px;
  font-weight: 600;
  line-height: 17.578px;
  text-align: left;
  white-space: nowrap;
  z-index: 221;
}
.ski-passes-goods {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 18px;
  color: #ffffff;
  font-family: Inter, var(--default-font-family);
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  text-align: left;
  white-space: nowrap;
  z-index: 222;
  width: 64px;
}
.image-4 {
  width: 24px;
  height: 24px;
  top: 14px;
  left: 647px;
  background: url(/assets/icons/menu_b.svg)
    no-repeat center;
  background-size: cover;
  z-index: 223;
}
.menu {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  height: 18px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 15px;
  font-weight: 600;
  line-height: 17.578px;
  text-align: left;
  white-space: nowrap;
  z-index: 224;
}
.flex-row-eb {
  position: relative;
  width: 93vw;
  margin: 15% 0 0 0;
  z-index: 321;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.frame-5 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 7px;
  width: 78%;
  z-index: 321;
}
.ski-pass-25-26 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  color: #ffffff;
  font-family: Benzin-Medium, var(--default-font-family);
  font-size: 75px;
  font-weight: 400;
  line-height: 103px;
  text-align: left;
  z-index: 322;
}
.new-year-tickets {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;

  position: relative;
  color: #ffffff;
  font-family: Roboto, var(--default-font-family);
  font-size: 44px;
  font-weight: 400;
  line-height: 51.563px;
  text-align: left;
  z-index: 323;
}
.frame-6 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  position: absolute;
  width: 1298px;
  height: 61px;
  top: 37px;
  left: 0;
  z-index: 253;
}
.group {
  flex-shrink: 0;
  position: relative;
  width: 61px;
  height: 61px;
  background: url(/assets/img/v2/PLKepSoKoB.svg)
    no-repeat center;
  background-size: 100% 100%;
  z-index: 254;
}
.group-7 {
  flex-shrink: 0;
  position: relative;
  width: 61px;
  height: 61px;
  background: url(/assets/img/v2/fkB3KhwADV.svg)
    no-repeat center;
  background-size: 100% 100%;
  z-index: 255;
}
.frame-8 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 20px;
  position: absolute;
  width: 340px;
  padding: 25px 40px 25px 40px;
  background: rgba(192, 188, 188, 0.5);
  z-index: 229;
  border-radius: 15px;
  right: 29px;
  bottom: 12px;
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.frame-9 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  width: 149px;
  z-index: 230;
}
.weather {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  min-width: 0;
  height: 28px;
  color: #ffffff;
  font-family: Roboto, var(--default-font-family);
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  text-align: left;
  white-space: nowrap;
  z-index: 231;
}
.frame-a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 8px;
  position: relative;
  min-width: 0;
  z-index: 232;
}
.group-b {
  flex-shrink: 0;
  position: relative;
  width: 149px;
  height: 44px;
  z-index: 233;
}
.temperature {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: absolute;
  height: 44px;
  top: 0;
  left: 0;
  color: #ffffff;
  font-family: Roboto, var(--default-font-family);
  font-size: 48px;
  font-weight: 600;
  line-height: 44px;
  text-align: left;
  white-space: nowrap;
  z-index: 234;
}
.sunny {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 28px;
  color: #ffffff;
  font-family: Roboto, var(--default-font-family);
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  text-align: left;
  white-space: nowrap;
  z-index: 235;
}
.frame-c {
  display: flex;
  align-items: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 20px;
  position: relative;
  z-index: 236;
}
.group-d {
  flex-shrink: 0;
  position: relative;
  width: 120px;
  height: 97px;
  z-index: 237;
}
.frame-e {
  position: relative;
  width: 29px;
  height: 29px;
  margin: 5px 0 0 11px;
  background: url(/assets/img/v2/wQqmf6q41V.svg)
    no-repeat center;
  background-size: cover;
  z-index: 239;
  overflow: hidden;
}
.frame-f {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  gap: 3px;
  position: relative;
  width: 64px;
  margin: 8px 0 0 28px;
  z-index: 240;
}
.frame-10 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 3px;
  position: relative;
  width: 64px;
  z-index: 241;
}
.wind-speed {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 35px;
  height: 20px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 24px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  white-space: nowrap;
  z-index: 242;
}
.wind {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 26px;
  height: 15px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 15px;
  font-weight: 400;
  line-height: 15px;
  text-align: center;
  white-space: nowrap;
  z-index: 243;
}
.wind-11 {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 18px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 15px;
  font-weight: 400;
  line-height: 17.578px;
  text-align: center;
  white-space: nowrap;
  z-index: 244;
}
.rectangle-12 {
  position: absolute;
  width: 120px;
  height: 97px;
  top: 0;
  left: 0;
  background: #fff7f7;
  z-index: 238;
  border-radius: 14px;
}
.group-13 {
  flex-shrink: 0;
  position: relative;
  width: 120px;
  height: 97px;
  z-index: 245;
}
.frame-14 {
  position: relative;
  width: 26.073px;
  height: 26.073px;
  margin: 7px 0 0 12.464px;
  background: url(/assets/img/v2/e2QfHsena5.svg)
    no-repeat center;
  background-size: cover;
  z-index: 247;
  overflow: hidden;
}
.frame-15 {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  gap: 3px;
  position: relative;
  width: 78px;
  margin: 8.927px 0 0 20px;
  z-index: 248;
}
.frame-16 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 3px;
  position: relative;
  width: 57px;
  z-index: 249;
}
.visibility {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 42px;
  height: 20px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 24px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  white-space: nowrap;
  z-index: 250;
}
.visibility-17 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 24px;
  height: 15px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 15px;
  font-weight: 400;
  line-height: 15px;
  text-align: center;
  white-space: nowrap;
  z-index: 251;
}
.visibility-18 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 78px;
  height: 18px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 15px;
  font-weight: 400;
  line-height: 17.578px;
  text-align: center;
  white-space: nowrap;
  z-index: 252;
}
.rectangle-19 {
  position: absolute;
  width: 120px;
  height: 97px;
  top: 0;
  left: 0;
  background: #ffffff;
  z-index: 246;
  border-radius: 14px;
}
.frame-1a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 15px;
  position: absolute;
  width: 548px;
  height: 225px;
  bottom: 0;
  left: 0;
  padding: 50px 37px 50px 37px;
  background: #ffffff;
  z-index: 225;
  border-radius: 15px 15px 15px 0;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.resort-arsenev {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 56px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-align: left;
  white-space: nowrap;
  z-index: 226;
}
.resort-description {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  width: 388px;
  height: 54px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 15px;
  font-weight: 400;
  line-height: 17.578px;
  text-align: left;
  z-index: 227;
}
.flex-row-1b {
  position: relative;
  width: 100%;
  padding: 45px 37px 0 37px;
  z-index: 320;
  box-sizing: border-box;
}
.chatgpt-image {
  position: absolute;
  width: 100%;
  height: 250px;
  top: 39px;
  left: 0;
  background: url(/assets/img/v2/EeN0x84ucC.png)
    no-repeat center;
  background-size: cover;
  z-index: 256;
}
.frame-1a-ttr-1{
  position: absolute;
    left: 37px;
    bottom: 12px;
    z-index: 315;
    padding: 25px 25px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    gap: 6px;
    border-radius: 15px;
    background: rgba(192, 188, 188, 0.5);
    color: white;
    opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.frame-1a-ttr-1-title{
  font-family: 'Roboto';
  font-size: 14px;
}
.frame-1a-ttr-1-description{
  font-family: 'Roboto';
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
}
.lifts-trails-1c {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  color: #000000;
  font-family: Benzin-Regular, var(--default-font-family);
  font-size: 48px;
  font-weight: 400;
  line-height: 66px;
  text-align: left;
  white-space: nowrap;
  z-index: 320;
  margin-bottom: 40px;
}
.frame-1d {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 4px;
  position: absolute;
  width: 275px;
  height: 109px;
  top: 75px;
  z-index: 173;
  right: 37px;
}
.trails-routes {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  min-width: 0;
  height: 49px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 42px;
  font-weight: 700;
  line-height: 49px;
  text-align: center;
  white-space: nowrap;
  z-index: 174;
}
.trails-routes-1e {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  width: 275px;
  min-width: 0;
  height: 56px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 24px;
  font-weight: 400;
  line-height: 28.125px;
  text-align: center;
  z-index: 175;
}
.frame-1f {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 40px;
  position: relative;
  width: 100%;
  z-index: 299;
}
.frame-20 {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 15px;
  position: relative;
  width: 100%;
  z-index: 300;
  flex-wrap: wrap;
  row-gap: 15px;
}
.frame-21 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 15px;
  position: relative;
  height: 60px;
  padding: 10px 60px 10px 60px;
  background: #ffffff;
  border: 1px solid #000000;
  z-index: 301;
  border-radius: 15px;
}
.frame-22 {
  flex-shrink: 0;
  position: relative;
  width: 36px;
  height: 36px;
  background: url(/assets/img/v2/ZmuUfovFQh.svg)
    no-repeat center;
  background-size: cover;
  z-index: 302;
  overflow: hidden;
}
.eco-routes {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 28px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  white-space: nowrap;
  z-index: 303;
}
.frame-23 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 15px;
  position: relative;
  height: 60px;
  padding: 10px 60px 10px 60px;
  background: #ffffff;
  border: 1px solid #000000;
  z-index: 304;
  border-radius: 15px;
}
.frame-24 {
  flex-shrink: 0;
  position: relative;
  width: 36px;
  height: 36px;
  background: url(/assets/img/v2/XFUKjaQjOh.svg)
    no-repeat center;
  background-size: cover;
  z-index: 305;
  overflow: hidden;
}
.lifts {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 159.403px;
  height: 28px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  white-space: nowrap;
  z-index: 306;
}
.frame-25 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 15px;
  position: relative;
  width: 268px;
  height: 60px;
  padding: 10px 60px 10px 60px;
  background: white;
  z-index: 307;
  border-radius: 15px;
  border: 1px solid #000000;
}
.frame-26 {
  flex-shrink: 0;
  position: relative;
  width: 36px;
  height: 33px;
  background: url(/assets/icons/ski_b.svg)
    no-repeat center;
  background-size: cover;
  z-index: 308;
  overflow: hidden;
}
.trails {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 93.895px;
  height: 28px;
  color: black;
  font-family: Roboto, var(--default-font-family);
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  white-space: nowrap;
  z-index: 309;
}
.frame-27 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  min-width: 0;
  z-index: 310;
}
.line {
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  height: 1px;
  z-index: 311;
  width: 100%;
  background: black;
}
.lifts-and-tracks {
  flex-shrink: 0;
  position: relative;
  width: 100%;
  height: 65px;
  z-index: 312;
  border-radius: 15px;
  background: #F6F6F6;
  display: grid;
  grid-template-columns: 20% 20% 20% 20% 20%;
  align-items: center;
  padding: 0 37px;
}
.rectangle-28 {
  position: absolute;
  width: 1366px;
  height: 65px;
  top: 0;
  left: 0;
  background: #f6f6f6;
  z-index: 313;
  border-radius: 15px;
}
.title {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 22px;
  font-weight: 600;
  line-height: 25.781px;
  text-align: left;
  white-space: nowrap;
  z-index: 314;
}
.status {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 22px;
  font-weight: 600;
  line-height: 25.781px;
  text-align: left;
  white-space: nowrap;
  z-index: 315;
}
.difficulty {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 22px;
  font-weight: 600;
  line-height: 25.781px;
  text-align: left;
  white-space: nowrap;
  z-index: 316;
}
.length {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 22px;
  font-weight: 600;
  line-height: 25.781px;
  text-align: left;
  white-space: nowrap;
  z-index: 317;
}
.elevation-changes {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 22px;
  font-weight: 600;
  line-height: 25.781px;
  text-align: left;
  white-space: nowrap;
  z-index: 318;
}
.flex-row-29 {
  position: relative;
  width: 100%;
  padding: 30px 37px 0 37px;
  z-index: 295;
  display: flex;
  flex-direction: column;
  gap: 17px;
  background: white;
}
.highways-row{
  width: 100%;
  display: grid;
  grid-template-columns: 20% 20% 20% 20% 20%;
  padding: 0 37px;
  align-items: center;
}
.highways-row-item-row{
  display: flex;
  flex-direction: row !important;
  align-items: center;
  gap: 15px !important;
}
.highways-row-divider{
  width: 100%;
  height: 1px;
  background: #EEEEEE;
}
.highways-row-item{
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.tracks {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 35px;
  position: absolute;
  width: 188.882px;
  height: 273px;
  top: 0;
  left: 55px;
  z-index: 259;
}
.track-1 {
  position: relative;
  min-width: 0;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 21.094px;
  text-align: left;
  z-index: 260;
}
.track-2 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  width: 188.882px;
  min-width: 0;
  height: 42px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 21.094px;
  text-align: left;
  z-index: 261;
}
.track-3 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  width: 188.882px;
  min-width: 0;
  height: 42px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 21.094px;
  text-align: left;
  z-index: 262;
}
.track-4 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  width: 188.882px;
  min-width: 0;
  height: 42px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 21.094px;
  text-align: left;
  z-index: 263;
}
.frame-2a {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 215px;
  position: absolute;
  width: 824.977px;
  height: 264px;
  top: 12px;
  left: 319px;
  z-index: 264;
}
.frame-2b {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 46px;
  position: relative;
  width: 540.102px;
  z-index: 265;
}
.frame-2c {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 97px;
  position: relative;
  width: 410.033px;
  z-index: 266;
}
.status-2d {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 60px;
  position: relative;
  width: 104.813px;
  z-index: 267;
}
.open {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  min-width: 0;
  height: 17.286px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 17.286px;
  text-align: left;
  white-space: nowrap;
  z-index: 268;
}
.open-2e {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  min-width: 0;
  height: 17.286px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 17.286px;
  text-align: left;
  white-space: nowrap;
  z-index: 269;
}
.open-2f {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  min-width: 0;
  height: 17.286px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 17.286px;
  text-align: left;
  white-space: nowrap;
  z-index: 270;
}
.open-30 {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  min-width: 0;
  height: 17.286px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 17.286px;
  text-align: left;
  white-space: nowrap;
  z-index: 271;
}
.frame-31 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 60px;
  position: relative;
  width: 157.22px;
  z-index: 272;
}
.frame-32 {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 15px;
  position: relative;
  width: 135.721px;
  z-index: 273;
}
.rectangle-33 {
  flex-shrink: 0;
  position: relative;
  width: 17px;
  height: 17px;
  z-index: 274;
  border-radius: 22px;
  
}
.average {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 103.721px;
  height: 21px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  white-space: nowrap;
  z-index: 275;
}
.frame-34 {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 15px;
  position: relative;
  width: 154.272px;
  z-index: 276;
}
.rectangle-35 {
  flex-shrink: 0;
  position: relative;
  width: 17px;
  height: 17px;
  background: #ea4335;
  z-index: 277;
  border-radius: 22px;
}
.difficult {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 110.272px;
  height: 21px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  white-space: nowrap;
  z-index: 278;
}
.frame-36 {
  display: flex;
  align-items: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 15px;
  position: relative;
  min-width: 0;
  z-index: 279;
}
.rectangle-37 {
  flex-shrink: 0;
  position: relative;
  width: 17px;
  height: 17px;
  background: #ea4335;
  z-index: 280;
  border-radius: 22px;
}
.difficult-38 {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 21px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  white-space: nowrap;
  z-index: 281;
}
.frame-39 {
  display: flex;
  align-items: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 15px;
  position: relative;
  min-width: 0;
  z-index: 282;
}
.rectangle-3a {
  flex-shrink: 0;
  position: relative;
  width: 17px;
  height: 17px;
  background: #34a853;
  z-index: 283;
  border-radius: 22px;
}
.easy {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 21px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  white-space: nowrap;
  z-index: 284;
}
.length-3b {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 60px;
  position: relative;
  width: 84.069px;
  z-index: 285;
}
.length-3c {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  min-width: 0;
  height: 21px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  white-space: nowrap;
  z-index: 286;
}
.length-3d {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  min-width: 0;
  height: 21px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  white-space: nowrap;
  z-index: 287;
}
.length-3e {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  min-width: 0;
  height: 21px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  white-space: nowrap;
  z-index: 288;
}
.length-3f {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  min-width: 0;
  height: 21px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  white-space: nowrap;
  z-index: 289;
}
.elevation-changes-40 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 60px;
  position: relative;
  width: 69.875px;
  z-index: 290;
}
.elevation-changes-41 {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  min-width: 0;
  height: 21px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  white-space: nowrap;
  z-index: 291;
}
.elevation-changes-42 {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  min-width: 0;
  height: 21px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  white-space: nowrap;
  z-index: 292;
}
.elevation-changes-43 {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  min-width: 0;
  height: 21px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  white-space: nowrap;
  z-index: 293;
}
.elevation-changes-44 {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  min-width: 0;
  height: 21px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  white-space: nowrap;
  z-index: 294;
}
.frame-45 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-wrap: nowrap;
  gap: 77px;
  position: absolute;
  width: 1366px;
  height: 158.277px;
  top: 59px;
  left: 0;
  z-index: 295;
}
.line-46 {
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  min-width: 0;
  height: 1px;
  background: url(/assets/img/v2/Gn5Wifg8qz.svg)
    no-repeat center;
  background-size: cover;
  z-index: 296;
}
.line-47 {
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  min-width: 0;
  height: 3.139px;
  background: url(/assets/img/v2/OeKxO79qQL.svg)
    no-repeat center;
  background-size: cover;
  z-index: 297;
}
.line-48 {
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  min-width: 0;
  height: 3.139px;
  background: url(/assets/img/v2/DYmmc7Wtk8.svg)
    no-repeat center;
  background-size: cover;
  z-index: 298;
}
.frame-49 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  position: relative;
  width: 100%;
  margin: 180px 0 0 0;
  padding: 0 71px 0 71px;
  z-index: 199;
}
.frame-4a {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: -21px;
  position: relative;
  width: 809px;
  z-index: 200;
}
.frame-4b {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 15px;
  position: relative;
  width: 477px;
  z-index: 201;
}
.ellipse {
  flex-shrink: 0;
  position: relative;
  width: 25px;
  height: 25px;
  background: url(/assets/img/v2/3ZXcpjTACF.svg)
    no-repeat center;
  background-size: cover;
  z-index: 202;
  border-radius: 50%;
}
.resort-live {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 388px;
  height: 66px;
  color: #000000;
  font-family: Benzin-Regular, var(--default-font-family);
  font-size: 48px;
  font-weight: 400;
  line-height: 66px;
  text-align: center;
  white-space: nowrap;
  z-index: 203;
}
.frame-4c {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  width: 353px;
  z-index: 204;
}
.frame-4d {
  flex-shrink: 0;
  position: relative;
  width: 44px;
  height: 44px;
  background: url(/assets/img/v2/qrkbS0XEFN.svg)
    no-repeat center;
  background-size: cover;
  z-index: 205;
  overflow: hidden;
}
.webcams {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 145px;
  height: 28px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  white-space: nowrap;
  z-index: 206;
}
.arrows-events {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 20px;
  position: relative;
  width: 164px;
  z-index: 207;
}
.group-4e {
  flex-shrink: 0;
  position: relative;
  width: 72px;
  height: 72px;
  background: url(/assets/img/v2/vrNxFi2QiB.svg)
    no-repeat center;
  background-size: 100% 100%;
  z-index: 208;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.2s ease;
}
.group-4e:hover {
  opacity: 0.8;
  transform: scale(0.95);
}
.group-4e:active {
  transform: scale(0.9);
}
.group-4f {
  flex-shrink: 0;
  position: relative;
  width: 72px;
  height: 72px;
  background: url(/assets/img/v2/68AF6j4cSY.svg)
    no-repeat center;
  background-size: 100% 100%;
  z-index: 209;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.2s ease;
}
.group-4f:hover {
  opacity: 0.8;
  transform: scale(0.95);
}
.group-4f:active {
  transform: scale(0.9);
}
.video {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 25px;
  position: relative;
  width: 1681.189px;
  margin: 39px 0 0 0;
  z-index: 137;
}

/* Стили для горизонтального скролла камер */
.cameras-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(200, 200, 200, 0.5) transparent;
  -webkit-overflow-scrolling: touch;
}

.cameras-scroll::-webkit-scrollbar {
  height: 6px;
}

.cameras-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.cameras-scroll::-webkit-scrollbar-thumb {
  background-color: rgba(200, 200, 200, 0.5);
  border-radius: 3px;
  border: none;
}

.cameras-scroll::-webkit-scrollbar-thumb:hover {
  background-color: rgba(180, 180, 180, 0.7);
}

.camera-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 8px;
  position: relative;
  width: 315.189px;
  z-index: 138;
}

.camera-item .image-52 {
  position: absolute;
  width: 315.189px;
  height: 210.202px;
  top: 0;
  left: 0;
  z-index: 140;
  border-radius: 15px;
  overflow: hidden;
}

.camera-item .image-52 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.frame-50 {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 8px;
  position: relative;
  width: 315.189px;
  z-index: 138;
}
.video-51 {
  flex-shrink: 0;
  position: relative;
  width: 315.189px;
  height: 210.202px;
  z-index: 139;
}
.polygon {
  position: relative;
  width: 49.609px;
  height: 44.763px;
  margin: 82.835px 0 0 132.905px;
  background: url(/assets/img/v2/1oCpbEfGSD.svg)
    no-repeat center;
  background-size: cover;
  z-index: 141;
}
.image-52 {
  position: absolute;
  width: 315.189px;
  height: 210.202px;
  top: 0;
  left: 0;
  background-size: cover;
  z-index: 140;
  border-radius: 15px;
}
.frame-53 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  width: 194px;
  z-index: 142;
}
.camera-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 130px;
  height: 28px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  text-align: center;
  white-space: nowrap;
  z-index: 143;
}
.length-54 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 54px;
  height: 21px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 18px;
  font-weight: 300;
  line-height: 21px;
  text-align: center;
  white-space: nowrap;
  z-index: 144;
}
.frame-55 {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 8px;
  position: relative;
  width: 316.5px;
  z-index: 145;
}
.video-56 {
  flex-shrink: 0;
  position: relative;
  width: 316.5px;
  height: 211px;
  z-index: 146;
}
.image-57 {
  position: absolute;
  width: 316.5px;
  height: 211px;
  top: 0;
  left: 0px;
  background-size: cover;
  z-index: 147;
  border-radius: 15px;
}
.polygon-58 {
  position: absolute;
  width: 49.815px;
  height: 44.949px;
  top: 83.184px;
  left: 133.094px;
  background: url(/assets/img/v2/eZruPKgyf7.svg)
    no-repeat center;
  background-size: cover;
  z-index: 148;
}
.frame-59 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  width: 194px;
  z-index: 149;
}
.camera-number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 130px;
  height: 28px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  text-align: center;
  white-space: nowrap;
  z-index: 150;
}
.meter {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 54px;
  height: 21px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 18px;
  font-weight: 300;
  line-height: 21px;
  text-align: center;
  white-space: nowrap;
  z-index: 151;
}
.frame-5a {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 8px;
  position: relative;
  width: 316.5px;
  z-index: 152;
}
.video-5b {
  flex-shrink: 0;
  position: relative;
  width: 316.5px;
  height: 211px;
  z-index: 153;
}
.polygon-5c {
  position: relative;
  width: 49.815px;
  height: 44.949px;
  margin: 83.184px 0 0 133.094px;
  background: url(/assets/img/v2/WyxXjwRLQm.svg)
    no-repeat center;
  background-size: cover;
  z-index: 155;
}
.image-5d {
  position: absolute;
  width: 316.5px;
  height: 211px;
  top: 0;
  left: 0;
  background-size: cover;
  z-index: 154;
  border-radius: 15px;
}
.frame-5e {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  width: 194px;
  z-index: 156;
}
.camera-number-5f {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 130px;
  height: 28px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  text-align: center;
  white-space: nowrap;
  z-index: 157;
}
.meter-60 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 54px;
  height: 21px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 18px;
  font-weight: 300;
  line-height: 21px;
  text-align: center;
  white-space: nowrap;
  z-index: 158;
}
.frame-61 {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 8px;
  position: relative;
  width: 316.5px;
  z-index: 159;
}
.video-62 {
  flex-shrink: 0;
  position: relative;
  width: 316.5px;
  height: 211px;
  z-index: 160;
}
.polygon-63 {
  position: relative;
  width: 49.815px;
  height: 44.949px;
  margin: 83.184px 0 0 133.094px;
  background: url(/assets/img/v2/cu9h6aNOTG.svg)
    no-repeat center;
  background-size: cover;
  z-index: 162;
}
.image-64 {
  position: absolute;
  width: 316.5px;
  height: 211px;
  top: 0;
  left: 0;
  background-size: cover;
  z-index: 161;
  border-radius: 15px;
}
.frame-65 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  width: 194px;
  z-index: 163;
}
.camera-number-66 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 130px;
  height: 28px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  text-align: center;
  white-space: nowrap;
  z-index: 164;
}
.meter-67 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 54px;
  height: 21px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 18px;
  font-weight: 300;
  line-height: 21px;
  text-align: center;
  white-space: nowrap;
  z-index: 165;
}
.frame-68 {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 8px;
  position: relative;
  width: 316.5px;
  z-index: 166;
}
.video-69 {
  flex-shrink: 0;
  position: relative;
  width: 316.5px;
  height: 211px;
  z-index: 167;
}
.polygon-6a {
  position: relative;
  width: 49.815px;
  height: 44.949px;
  margin: 83.184px 0 0 133.094px;
  background: url(/assets/img/v2/gmpm316fDx.svg)
    no-repeat center;
  background-size: cover;
  z-index: 169;
}
.image-6b {
  position: absolute;
  width: 316.5px;
  height: 211px;
  top: 0;
  left: 0;
  background-size: cover;
  z-index: 168;
  border-radius: 15px;
}
.frame-6c {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  width: 194px;
  z-index: 170;
}
.camera-number-6d {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 130px;
  height: 28px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  text-align: center;
  white-space: nowrap;
  z-index: 171;
}
.meter-6e {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 54px;
  height: 21px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 18px;
  font-weight: 300;
  line-height: 21px;
  text-align: center;
  white-space: nowrap;
  z-index: 172;
}
.ski-passes-tickets {
  display: block;
  position: relative;
  height: 66px;
  margin: 180px 0 0 71px;
  color: #000000;
  font-family: Benzin-Regular, var(--default-font-family);
  font-size: 48px;
  font-weight: 400;
  line-height: 66px;
  text-align: left;
  white-space: nowrap;
  z-index: 30;
}
.frame-6f {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 10px;
  position: relative;
  width: 1730px;
  margin: 26px 0 0 0;
  padding: 0 71px 0 71px;
  z-index: 31;
}
.frame-70 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 35px;
  position: relative;
  z-index: 32;
}
.frame-71 {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  gap: 40px;
  position: relative;
  width: 90px;
  z-index: 33;
  justify-content: center;
}
.group-72 {
  flex-shrink: 0;
  position: relative;
  width: 72px;
  height: 72px;
  background: url(/assets/img/v2/VSP5Z2hyWQ.svg)
    no-repeat center;
  background-size: 100% 100%;
  z-index: 34;
}
.group-73 {
  flex-shrink: 0;
  position: relative;
  width: 72px;
  height: 72px;
  background: url(/assets/img/v2/NxXNrmPVrB.svg)
    no-repeat center;
  background-size: 100% 100%;
  z-index: 35;
}
.frame-74 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 35px;
  position: relative;
  width: 344px;
  z-index: 36;
}
.image-75 {
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  min-width: 0;
  height: 492px;
  background-size: cover;
  z-index: 37;
  border-radius: 15px;
}
.frame-76 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 16px;
  position: relative;
  min-width: 0;
  z-index: 38;
}
.frame-77 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 39;
}
.ski-pass-10-days {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  text-align: left;
  white-space: normal;
  z-index: 40;
  max-width: 85%;
  text-transform: uppercase;
}
.frame-78 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  width: 39.982px;
  padding: 10px 10px 10px 10px;
  background: #00868b;
  z-index: 41;
  overflow: hidden;
  border-radius: 7px;
}
.vector {
  flex-shrink: 0;
  position: relative;
  width: 19.982px;
  height: 20px;
  background: url(/assets/img/v2/AAjhLF1HOa.svg)
    no-repeat center;
  background-size: cover;
  z-index: 42;
}
.frame-79 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 15px;
  position: relative;
  z-index: 43;
}
.frame-7a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  z-index: 44;
}
.frame-7b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 45;
}
.adult {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 23px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 20px;
  font-weight: 500;
  line-height: 23px;
  text-align: left;
  white-space: nowrap;
  z-index: 46;
}
.frame-7c {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-wrap: nowrap;
  flex-shrink: 0;
  position: relative;
  width: 61px;
  z-index: 47;
}
.group-7d {
  flex-shrink: 0;
  position: relative;
  width: 51.211px;
  height: 19px;
  z-index: 48;
}
.ruble {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: absolute;
  height: 19px;
  top: 0;
  left: 2.211px;
  color: #9c9c9c;
  font-family: Roboto, var(--default-font-family);
  font-size: 16px;
  font-weight: 700;
  line-height: 18.75px;
  text-align: left;
  white-space: nowrap;
  z-index: 49;
}
.ruble-7e {
  position: absolute;
  width: 53px;
  height: 13px;
  top: 2.022px;
  left: -1px;
  background: url(/assets/img/v2/8eU46PtFkq.svg)
    no-repeat center;
  background-size: cover;
  z-index: 50;
}
.frame-7f {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 23px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
  text-align: left;
  white-space: nowrap;
  z-index: 51;
}
.frame-80 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 52;
}
.child {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 23px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 20px;
  font-weight: 500;
  line-height: 23px;
  text-align: left;
  white-space: nowrap;
  z-index: 53;
}
.frame-81 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-wrap: nowrap;
  flex-shrink: 0;
  position: relative;
  width: 61px;
  z-index: 54;
}
.group-82 {
  flex-shrink: 0;
  position: relative;
  width: 51.211px;
  height: 19px;
  z-index: 55;
}
.ruble-83 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: absolute;
  height: 19px;
  top: 0;
  left: 2.211px;
  color: #9c9c9c;
  font-family: Roboto, var(--default-font-family);
  font-size: 16px;
  font-weight: 700;
  line-height: 18.75px;
  text-align: left;
  white-space: nowrap;
  z-index: 56;
}
.ruble-84 {
  position: absolute;
  width: 53px;
  height: 13px;
  top: 2.022px;
  left: -1px;
  background: url(/assets/img/v2/i7E2AMt2kj.svg)
    no-repeat center;
  background-size: cover;
  z-index: 57;
}
.frame-85 {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 23px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
  text-align: left;
  white-space: nowrap;
  z-index: 58;
}
.image-86 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 35px;
  position: relative;
  width: 344px;
  z-index: 59;
}
.frame-87 {
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  min-width: 0;
  height: 492px;
  background-size: cover;
  z-index: 60;
  border-radius: 15px;
}
.frame-88 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 16px;
  position: relative;
  min-width: 0;
  z-index: 61;
}
.frame-89 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 62;
}
.ski-pass-7-days {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 28px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  text-align: left;
  white-space: nowrap;
  z-index: 63;
}
.frame-8a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  width: 39.982px;
  padding: 10px 10px 10px 10px;
  background: #00868b;
  z-index: 64;
  overflow: hidden;
  border-radius: 7px;
}
.vector-8b {
  flex-shrink: 0;
  position: relative;
  width: 19.982px;
  height: 20px;
  background: url(/assets/img/v2/SuDnRzEnWR.svg)
    no-repeat center;
  background-size: cover;
  z-index: 65;
}
.frame-8c {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 15px;
  position: relative;
  z-index: 66;
}
.frame-8d {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  z-index: 67;
}
.frame-8e {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 68;
}
.adult-8f {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 23px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 20px;
  font-weight: 500;
  line-height: 23px;
  text-align: left;
  white-space: nowrap;
  z-index: 69;
}
.frame-90 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-wrap: nowrap;
  flex-shrink: 0;
  position: relative;
  width: 61px;
  z-index: 70;
}
.group-91 {
  flex-shrink: 0;
  position: relative;
  width: 51.211px;
  height: 19px;
  z-index: 71;
}
.currency {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: absolute;
  height: 19px;
  top: 0;
  left: 2.211px;
  color: #9c9c9c;
  font-family: Roboto, var(--default-font-family);
  font-size: 16px;
  font-weight: 700;
  line-height: 18.75px;
  text-align: left;
  white-space: nowrap;
  z-index: 72;
}
.line-92 {
  position: absolute;
  width: 53px;
  height: 13px;
  top: 2.022px;
  left: -1px;
  background: url(/assets/img/v2/dcMVw57p6h.svg)
    no-repeat center;
  background-size: cover;
  z-index: 73;
}
.currency-93 {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 23px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
  text-align: left;
  white-space: nowrap;
  z-index: 74;
}
.frame-94 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 75;
}
.child-95 {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 23px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 20px;
  font-weight: 500;
  line-height: 23px;
  text-align: left;
  white-space: nowrap;
  z-index: 76;
}
.frame-96 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-wrap: nowrap;
  flex-shrink: 0;
  position: relative;
  width: 61px;
  z-index: 77;
}
.group-97 {
  flex-shrink: 0;
  position: relative;
  width: 51.211px;
  height: 19px;
  z-index: 78;
}
.currency-98 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: absolute;
  height: 19px;
  top: 0;
  left: 2.211px;
  color: #9c9c9c;
  font-family: Roboto, var(--default-font-family);
  font-size: 16px;
  font-weight: 700;
  line-height: 18.75px;
  text-align: left;
  white-space: nowrap;
  z-index: 79;
}
.currency-99 {
  position: absolute;
  width: 53px;
  height: 13px;
  top: 2.022px;
  left: -1px;
  background: url(/assets/img/v2/JOpVCopT3Q.svg)
    no-repeat center;
  background-size: cover;
  z-index: 80;
}
.frame-9a {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 23px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
  text-align: left;
  white-space: nowrap;
  z-index: 81;
}
.image-9b {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 35px;
  position: relative;
  width: 344px;
  z-index: 82;
}
.frame-9c {
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  min-width: 0;
  height: 492px;
  background-size: cover;
  z-index: 83;
  border-radius: 15px;
}
.frame-9d {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 16px;
  position: relative;
  min-width: 0;
  z-index: 84;
}
.frame-9e {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 85;
}
.ski-pass {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 28px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  text-align: left;
  white-space: nowrap;
  z-index: 86;
}
.frame-9f {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  width: 39.982px;
  padding: 10px 10px 10px 10px;
  background: #00868b;
  z-index: 87;
  overflow: hidden;
  border-radius: 7px;
}
.vector-a0 {
  flex-shrink: 0;
  position: relative;
  width: 19.982px;
  height: 20px;
  background: url(/assets/img/v2/1SLXnjo8O8.svg)
    no-repeat center;
  background-size: cover;
  z-index: 88;
}
.frame-a1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 15px;
  position: relative;
  z-index: 89;
}
.frame-a2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  z-index: 90;
}
.frame-a3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 91;
}
.adult-a4 {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 23px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 20px;
  font-weight: 500;
  line-height: 23px;
  text-align: left;
  white-space: nowrap;
  z-index: 92;
}
.frame-a5 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-wrap: nowrap;
  flex-shrink: 0;
  position: relative;
  width: 61px;
  z-index: 93;
}
.group-a6 {
  flex-shrink: 0;
  position: relative;
  width: 51.211px;
  height: 19px;
  z-index: 94;
}
.currency-a7 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: absolute;
  height: 19px;
  top: 0;
  left: 2.211px;
  color: #9c9c9c;
  font-family: Roboto, var(--default-font-family);
  font-size: 16px;
  font-weight: 700;
  line-height: 18.75px;
  text-align: left;
  white-space: nowrap;
  z-index: 95;
}
.currency-a8 {
  position: absolute;
  width: 53px;
  height: 13px;
  top: 2.022px;
  left: -1px;
  background: url(/assets/img/v2/wpijZStbGH.svg)
    no-repeat center;
  background-size: cover;
  z-index: 96;
}
.frame-a9 {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 23px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
  text-align: left;
  white-space: nowrap;
  z-index: 97;
}
.child-aa {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 98;
}
.frame-ab {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 23px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 20px;
  font-weight: 500;
  line-height: 23px;
  text-align: left;
  white-space: nowrap;
  z-index: 99;
}
.group-ac {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-wrap: nowrap;
  flex-shrink: 0;
  position: relative;
  width: 51.211px;
  z-index: 100;
}
.currency-ad {
  flex-shrink: 0;
  position: relative;
  width: 51.211px;
  height: 19px;
  z-index: 101;
}
.currency-ae {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: absolute;
  height: 19px;
  top: 0;
  left: 2.211px;
  color: #9c9c9c;
  font-family: Roboto, var(--default-font-family);
  font-size: 16px;
  font-weight: 700;
  line-height: 18.75px;
  text-align: left;
  white-space: nowrap;
  z-index: 102;
}
.frame-af {
  position: absolute;
  width: 53px;
  height: 13px;
  top: 2.022px;
  left: -1px;
  background: url(/assets/img/v2/hMtGakVwHD.svg)
    no-repeat center;
  background-size: cover;
  z-index: 103;
}
.image-b0 {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 23px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
  text-align: left;
  white-space: nowrap;
  opacity: 0.9;
  z-index: 104;
}
.frame-b1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 35px;
  position: relative;
  width: 344px;
  z-index: 105;
}
.frame-b2 {
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  min-width: 0;
  height: 492px;
  background-size: cover;
  z-index: 106;
  border-radius: 15px;
}
.ski-pass-b3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 16px;
  position: relative;
  min-width: 0;
  z-index: 107;
}
.frame-b4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 108;
}
.frame-b5 {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 28px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  text-align: left;
  white-space: nowrap;
  z-index: 109;
}
.vector-b6 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  width: 39.982px;
  padding: 10px 10px 10px 10px;
  background: #00868b;
  z-index: 110;
  overflow: hidden;
  border-radius: 7px;
}
.frame-b7 {
  flex-shrink: 0;
  position: relative;
  width: 19.982px;
  height: 20px;
  background: url(/assets/img/v2/KpXxgdGNqg.svg)
    no-repeat center;
  background-size: cover;
  z-index: 111;
}
.frame-b8 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 15px;
  position: relative;
  z-index: 112;
}
.frame-b9 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  z-index: 113;
}
.adult-ba {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 114;
}
.frame-bb {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 23px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 20px;
  font-weight: 500;
  line-height: 23px;
  text-align: left;
  white-space: nowrap;
  z-index: 115;
}
.group-bc {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-wrap: nowrap;
  flex-shrink: 0;
  position: relative;
  width: 61px;
  z-index: 116;
}
.currency-bd {
  flex-shrink: 0;
  position: relative;
  width: 51.211px;
  height: 19px;
  z-index: 117;
}
.currency-be {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: absolute;
  height: 19px;
  top: 0;
  left: 2.211px;
  color: #9c9c9c;
  font-family: Roboto, var(--default-font-family);
  font-size: 16px;
  font-weight: 700;
  line-height: 18.75px;
  text-align: left;
  white-space: nowrap;
  z-index: 118;
}
.frame-bf {
  position: absolute;
  width: 51px;
  height: 11px;
  top: 3.022px;
  left: 0;
  background: url(/assets/img/v2/EmRS0gTxtU.svg)
    no-repeat center;
  background-size: cover;
  z-index: 119;
}
.child-c0 {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 23px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
  text-align: left;
  white-space: nowrap;
  z-index: 120;
}
.frame-c1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 121;
}
.group-c2 {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 23px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 20px;
  font-weight: 500;
  line-height: 23px;
  text-align: left;
  white-space: nowrap;
  z-index: 122;
}
.currency-c3 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-wrap: nowrap;
  flex-shrink: 0;
  position: relative;
  width: 61px;
  z-index: 123;
}
.currency-c4 {
  flex-shrink: 0;
  position: relative;
  width: 51.211px;
  height: 19px;
  z-index: 124;
}
.frame-c5 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: absolute;
  height: 19px;
  top: 0;
  left: 2.211px;
  color: #9c9c9c;
  font-family: Roboto, var(--default-font-family);
  font-size: 16px;
  font-weight: 700;
  line-height: 18.75px;
  text-align: left;
  white-space: nowrap;
  z-index: 125;
}
.line-c6 {
  position: absolute;
  width: 51px;
  height: 11px;
  top: 3.022px;
  left: 0;
  background: url(/assets/img/v2/pfwHt8rWeW.svg)
    no-repeat center;
  background-size: cover;
  z-index: 126;
}
.activities {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 23px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
  text-align: left;
  white-space: nowrap;
  z-index: 127;
}
.flex-row-a {
  display: block;
  position: relative;
  height: 66px;
  margin: 144px 0 0 71px;
  color: #000000;
  font-family: Benzin-Regular, var(--default-font-family);
  font-size: 48px;
  font-weight: 400;
  line-height: 66px;
  text-align: left;
  white-space: nowrap;
  z-index: 130;
}
.image-c7 {
  position: relative;
  width: 100%;
  height: 614px;
  z-index: 135;
  padding: 32px;
}
.events-slider-nav-prev{
  background: transparent;
  border: none;
}
.events-slider-nav-next{
  background: transparent;
  border: none;
}
.frame-c8 {
  position: absolute;
  width: 100%;
  height: 607px;
  top: 0;
  left: 0;

  background-size: cover;
  z-index: 129;
  border-radius: 15px;
  overflow: hidden;
}

/* Стили для слайдера блога */
.blog-slider .frame-c8 {
  position: relative;
}

.blog-slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.blog-slider-slide-active {
  opacity: 1;
  visibility: visible;
}

.blog-slider-nav-prev,
.blog-slider-nav-next {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.3s ease;
}

.blog-slider-nav-prev:hover,
.blog-slider-nav-next:hover {
  opacity: 0.7;
}

.blog-slider-nav-prev:focus,
.blog-slider-nav-next:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Стили для секции "Карта курорта" */
.resort-map-title {
  display: block;
  position: relative;
  height: 66px;
  margin: 144px 0 0 71px;
  color: #000000;
  font-family: Benzin-Regular, var(--default-font-family);
  font-size: 48px;
  font-weight: 400;
  line-height: 66px;
  text-align: left;
  white-space: nowrap;
  z-index: 130;
}

.resort-map-container {
  position: relative;
  width: 100%;
  margin: 32px 0;
  padding: 0 71px;
  z-index: 135;
  display: flex;
  justify-content: center;
  align-items: center;
}

.resort-map-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.resort-map-image-clickable {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resort-map-image-clickable:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

/* Модальное окно для просмотра изображения на весь экран */
.image-viewer-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
  cursor: pointer;
}

.image-viewer-modal.active {
  display: flex;
}

.image-viewer-content {
  position: relative;
  max-width: 95%;
  max-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}

.image-viewer-img {
  max-width: 100%;
  max-height: 95vh;
  height: auto;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.image-viewer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
  backdrop-filter: blur(10px);
}

.image-viewer-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.image-viewer-close:active {
  transform: rotate(90deg) scale(0.95);
}

.image-viewer-close svg {
  width: 24px;
  height: 24px;
}

.group-c9 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 24px;
  position: absolute;
  width: 116px;
  height: 200px;
  background: rgba(0, 0, 0, 0.4);
  z-index: 326;
  overflow: hidden;
  border-radius: 15px;
  right: 0;
  top: 35%;
}
.group-ca {
  flex-shrink: 0;
  position: relative;
  width: 61px;
  height: 61px;
  background: url(/assets/img/v2/P4RgCzyJpq.svg)
    no-repeat center;
  background-size: 100% 100%;
  z-index: 327;
}
.frame-cb {
  flex-shrink: 0;
  position: relative;
  width: 61px;
  height: 61px;
  background: url(/assets/img/v2/qjWUua69xn.svg)
    no-repeat center;
  background-size: 100% 100%;
  z-index: 328;
}
.restaurant {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 17px;
  position: absolute;
  width: 582px;
  height: 207px;
  padding: 50px 50px 50px 39px;
  background: #ffffff;
  z-index: 131;
  border-radius: 15px;
  bottom: 0;
  left: 0;
}
.welcome {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  min-width: 0;
  height: 36px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 32px;
  font-weight: 600;
  line-height: 36px;
  text-align: left;
  white-space: nowrap;
  z-index: 132;
}
.details {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  min-width: 0;
  height: 18px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 15px;
  font-weight: 400;
  line-height: 17.578px;
  text-align: left;
  white-space: nowrap;
  z-index: 133;
}
.text-5f {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  min-width: 0;
  height: 18px;
  color: #ff0000;
  font-family: Roboto, var(--default-font-family);
  font-size: 15px;
  font-weight: 400;
  line-height: 17.578px;
  text-align: left;
  white-space: nowrap;
  z-index: 134;
}
.frame-cc {
  position: absolute;
  width: 185px;
  height: 185px;
  top: 429px;
  left: 1152px;
  z-index: 135;
  overflow: hidden;
}
.flex-row-ca {
  position: relative;
  width: 100%;
  height: 207.396px;
  margin: 146px 0 0 -7px;
  z-index: 25;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  width: 150px;
  min-width: 150px;
  top: 0;
  left: 43%;
  background: #00868B;
  z-index: 21;
  height: 150px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vector-cd {
  width: 100%;
  height: 2px;
  top: 6vw;
  right: 0;
  background: black;
  z-index: 24;
}
.vector-ce {
  width: 100%;
  height: 2px;
  top: 6vw;
  left: 7px;
  background: black;
  z-index: 25;
}
.frame-cf {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
  position: relative;
  width: 100%;
  top: -50px;
  padding: 0 71px 0 71px;
  z-index: 7;
  box-sizing: border-box;
}
.address {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  max-width: 40%;
  height: 79.396px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 24px;
  font-weight: 400;
  line-height: 28.125px;
  text-align: left;
  text-overflow: initial;
  z-index: 8;
  overflow: hidden;
}
.frame-d0 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 15px;
  position: relative;
  width: 224px;
  z-index: 9;
}
.spec-logo-footer{
  width: 70%;
  object-fit: contain;
}
.email {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 28px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  text-align: right;
  text-decoration: underline;
  white-space: nowrap;
  z-index: 10;
}
.phone-number {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 28px;
  color: #000000 !important;
  -webkit-text-fill-color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  text-align: right;
  text-decoration: underline;
  white-space: nowrap;
  z-index: 11;
  -webkit-tap-highlight-color: transparent;
}
.phone-number:link,
.phone-number:visited,
.phone-number:hover,
.phone-number:active {
  -webkit-text-fill-color: #000000;
  color: #000000 !important;
  -webkit-tap-highlight-color: transparent;
}
.frame-d1 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  position: relative;
  width: 25vw;
  margin: 0 auto;
  z-index: 12;
  margin-top: 35px;
}
.image-d2 {
  flex-shrink: 0;
  position: relative;
  width: 40px;
  height: 40px;
  background-size: cover;
  z-index: 13;
  display: flex;
}
.image-d3 {
  flex-shrink: 0;
  position: relative;
  width: 67.083px;
  height: 67.083px;
  background-size: cover;
  z-index: 14;
}
.line-d4 {
  position: relative;
  width: 100%;
  height: 2px;
  margin: 0 0 0 0;
  background: black;
  z-index: 5;
}
.frame-d5 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  width: 100%;
  padding: 54px 71px 0 71px;
  z-index: 15;
  box-sizing: border-box;
  gap: 25px;
}
.menu-d6 {
  flex-shrink: 0;
  position: relative;
  width: 264px;
  font-family: Roboto, var(--default-font-family);
  font-size: 24px;
  font-weight: 600;
  line-height: 28.125px;
  text-align: left;
  text-overflow: initial;
  white-space: nowrap;
  z-index: 16;
}
.menu-item {
  position: relative;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 24px;
  font-weight: 600;
  line-height: 28.125px;
  text-align: left;
}
.menu-item-d7 {
  position: relative;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 28.125px;
  text-align: left;
}
.menu-item-d8 {
  position: relative;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
}
.menu-item-d9 {
  position: relative;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 28.125px;
  text-align: left;
}
.services {
  flex-shrink: 0;
  position: relative;
  width: 248px;
  font-family: Roboto, var(--default-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 18.75px;
  text-align: left;
  z-index: 17;
}
.services-da {
  position: relative;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 24px;
  font-weight: 600;
  line-height: 28.8px;
  text-align: left;
}
.services-db {
  position: relative;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 18.75px;
  text-align: left;
}
.rectangle-dc {
  position: relative;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
}
.frame-dd {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 80px;
  position: relative;
  width: 230px;
  z-index: 18;
}
.business {
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  min-width: 0;
  font-family: Roboto, var(--default-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 18.75px;
  text-align: left;
  z-index: 19;
}
.business-de {
  position: relative;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 24px;
  font-weight: 600;
  line-height: 28.8px;
  text-align: left;
}
.business-df {
  position: relative;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 18.75px;
  text-align: left;
}
.business-e0 {
  position: relative;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
}
.partnership {
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  min-width: 0;
  font-family: Roboto, var(--default-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 18.75px;
  text-align: left;
  z-index: 20;
}
.partnership-e1 {
  position: relative;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 24px;
  font-weight: 600;
  line-height: 28.8px;
  text-align: left;
}
.partnership-e2 {
  position: relative;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 18.75px;
  text-align: left;
}
.partnership-e3 {
  position: relative;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
}
.rectangle-e4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100vw;
  height: 131px;
  margin: 175px 0 0 0;
  background: #00868b;
  z-index: 29;
  box-sizing: border-box;
  padding: 0 31px;
}
.copyright {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  width: 557px;
  height: 38px;
  color: #ffffff;
  font-family: Roboto, var(--default-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 18.75px;
  text-align: left;
  z-index: 29;
}
.tax-info {
  flex-shrink: 0;
  position: relative;
  height: 19px;
  color: #ffffff !important;
  font-family: Roboto, var(--default-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 18.75px;
  text-align: left;
  white-space: nowrap;
  z-index: 28;
  -webkit-text-fill-color: #FFFFFF;
  -webkit-tap-highlight-color: transparent;
}
.tax-info:link,
.tax-info:visited,
.tax-info:hover,
.tax-info:active {
  color: #FFFFFF !important;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-fill-color: #FFFFFF;
}
.frame-e5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  position: relative;
  width: 1394px;
  height: 19px;
  margin: 222px 0 0 -4.994px;
  padding: 0 0 0 0;
  z-index: 6;
}
.flex-row-eed {
  width: 100%;
  z-index: 100;
  position: relative;
}
.frame-e6 {
  position: absolute;
  width: 131.761px;
  height: 131.761px;
  top: -44px;
  left: 1189.941px;
  background: url(/assets/img/v2/L6p2MfJ8hq.svg)
    no-repeat center;
  background-size: cover;
  z-index: 178;
  overflow: hidden;
}
.frame-e7 {
  position: absolute;
  width: 110.978px;
  height: 110.978px;
  top: -22px;
  left: 668.129px;
  background: url(/assets/img/v2/07Cngy4zCN.svg)
    no-repeat center;
  background-size: cover;
  z-index: 180;
  overflow: hidden;
}
.frame-e8 {
  position: absolute;
  width: 83.175px;
  height: 83.175px;
  top: -20px;
  left: 449.043px;
  background: url(/assets/img/v2/ns5qzo6q9a.svg)
    no-repeat center;
  background-size: cover;
  z-index: 181;
  overflow: hidden;
}
.frame-e9 {
  position: absolute;
  width: 133.673px;
  height: 133.673px;
  top: 5px;
  left: 1488.985px;
  background: url(/assets/img/v2/WH6Hhuaou9.svg)
    no-repeat center;
  background-size: cover;
  z-index: 179;
  overflow: hidden;
}
.frame-ea {
  position: absolute;
  width: 192.315px;
  height: 192.315px;
  top: 7px;
  left: 908.13px;
  background: url(/assets/img/v2/TLNOWNcRtA.svg)
    no-repeat center;
  background-size: cover;
  z-index: 177;
  overflow: hidden;
}
.frame-eb {
  position: absolute;
  width: 83.175px;
  height: 83.175px;
  top: 11px;
  left: 219.043px;
  background: url(/assets/img/v2/QVZCEkZjPN.svg)
    no-repeat center;
  background-size: cover;
  z-index: 182;
  overflow: hidden;
}
.rectangle-ec {
  position: absolute;
  width: 37px;
  height: 462px;
  top: 80px;
  background: #ffffff;
  z-index: 325;
  left: 96.6vw;
}
.rectangle-ed {
  position: absolute;
  width: 37px;
  height: 446px;
  top: 80px;
  left: 0;
  background: #ffffff;
  z-index: 324;
}
.frame-ee {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 47px;
  position: absolute;
  height: 408px;
  left: 0;
  z-index: 185;
  margin-top: 39px;
}
.image-ef {
  flex-shrink: 0;
  position: relative;
  width: 504px;
  height: 408px;
  background-size: cover;
  z-index: 186;
  border-radius: 15px;
}
.frame-f0 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 187;
  padding-left: 47px;
}
.frame-f1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 20px;
  position: relative;
  min-width: 0;
  z-index: 188;
  width: 560px;
}
.announcement {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 32px;
  font-weight: 600;
  line-height: 37.5px;
  text-align: left;
  text-overflow: initial;
  z-index: 189;
}
.announcement-date {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 23px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 20px;
  font-weight: 200;
  line-height: 23px;
  text-align: left;
  white-space: nowrap;
  z-index: 190;
}
.details-link {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 23px;
  color: #00868b;
  font-family: Roboto, var(--default-font-family);
  font-size: 20px;
  font-weight: 500;
  line-height: 23px;
  text-align: left;
  white-space: nowrap;
  z-index: 191;
}
.events-f2 {
  display: flex;
  align-items: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 20px;
  position: relative;
  min-width: 0;
  z-index: 192;
}
.group-f3 {
  flex-shrink: 0;
  position: relative;
  width: 72px;
  height: 72px;
  background: url(/assets/img/v2/qZtu3ZzjLa.svg)
    no-repeat center;
  background-size: 100% 100%;
  z-index: 193;
}
.group-f4 {
  flex-shrink: 0;
  position: relative;
  width: 72px;
  height: 72px;
  background: url(/assets/img/v2/JC0rCEOoOB.svg)
    no-repeat center;
  background-size: 100% 100%;
  z-index: 194;
}
.image-f5 {
  flex-shrink: 0;
  position: relative;
  width: 548px;
  height: 408px;
  background-size: cover;
  z-index: 195;
  border-radius: 15px;
}
.frame-f6 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  top: 0;
  left: 0;
  padding: 0 71px 0 71px;
  z-index: 196;
  position: relative;
  margin-top: 100px;
}
.events-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 66px;
  color: #000000;
  font-family: Benzin-Regular, var(--default-font-family);
  font-size: 48px;
  font-weight: 400;
  line-height: 66px;
  text-align: center;
  white-space: nowrap;
  z-index: 197;
}
.events-description {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 28px;
  color: #000000;
  font-family: Roboto, var(--default-font-family);
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  white-space: nowrap;
  z-index: 198;
}
.chatgpt-image-f7 {
  position: absolute;
  width: 100%;
  height: 720px;
  top: 1860px;
  left: 0;
  background: url(/assets/img/v2/8kEet6ZwQR.png)
    no-repeat center;
  background-size: cover;
  z-index: 1;
}
.image-f8 {
  position: absolute;
  width: 4284px;
  height: 1603px;
  top: 2594px;
  left: -577px;
  background: url(/assets/img/v2/RZxPhV6SCz.png)
    no-repeat center;
  background-size: cover;
  opacity: 0.03;
}
.relative{
  position: relative;
}
.chatgpt-image-f9 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: -16px;
  background: url(/assets/img/v2/HnEmwyJBHY.png)
    no-repeat center;
  background-size: cover;
  z-index: 2;
  max-height: 100%;
}
.vector-fa {
  position: absolute;
  width: 1441px;
  top: 5821px;
  left: -4.994px;
  background-size: cover;
  z-index: 23;
}

/* Стили для слайдера событий */
.events-slider {
position: relative;
overflow: hidden;
}

.events-slider-track {
display: flex;
height: 100%;
padding-left: 5vw; /* эффект "недоезда" слева */
transition: transform 0.5s ease-in-out;
will-change: transform;
}

.events-slider-slide {
height: 100%;
display: flex;
align-items: flex-start;
flex-wrap: nowrap;
gap: 47px;
}

.events-slider-slide-active {
/* класс оставлен для возможных доп. эффектов */
}
.cameras-track{
display: flex;
gap: 25px;
transition: transform 0.5s ease-in-out;
will-change: transform;
padding-left: 37px;
}
.events-slider-slide .image-ef,
.events-slider-slide .image-f5 {
position: relative;
overflow: hidden;
flex-shrink: 0;
}

.events-slider-slide .image-ef {
width: 504px;
height: 408px;
}

.events-slider-slide .image-f5 {
width: 655px;
height: 408px;
}

.events-slider-slide .image-ef img,
.events-slider-slide .image-f5 img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
border-radius: 15px;
}

.events-slider-nav {
position: absolute;
top: 50%;
left: 0;
right: 0;
transform: translateY(-50%);
display: flex;
justify-content: space-between;
align-items: center;
pointer-events: none;
z-index: 200;
padding: 0 20px;
}

.events-slider-nav-btn {
background: none;
border: none;
cursor: pointer;
padding: 0;
pointer-events: all;
transition: opacity 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
}

.events-slider-nav-btn:hover {
opacity: 0.7;
}

.events-slider-nav-btn:focus {
outline: 2px solid #00868b;
outline-offset: 2px;
border-radius: 4px;
}

.details-link {
text-decoration: none;
transition: color 0.3s ease;
cursor: pointer;
}

.details-link:hover {
color: #006b6f;
text-decoration: underline;
}
.spec-nagition{
  top: 30px;
}
.frame a{
text-decoration: none;
}
.ski-passes-slider-track-wrapper{
width: 100%;
overflow: hidden;
}
.highways-row-item-non-mobile{
display: block;
}

/* ============================================
 АДАПТИВНОСТЬ ДЛЯ ГЛАВНОЙ СТРАНИЦЫ
 ============================================ */

@media (max-width: 1244px) {
.lifts-trails{
  display: none;
}
.ski-pass-25-26{
  font-size: 58px;
  line-height: 78px;
}
.new-year-tickets{
  font-size: 32px;
  line-height: 42px;
}
.flex-row-eb{
  margin: 20% 0 0 0;
}
.frame-1d{
  top: 25px;
}
.articles-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

}

/* Планшеты (до 1024px) */
@media (max-width: 1024px) {
.page-header{
  padding: 0;
}
.flex-row-d {
  padding: 0;
}
.frame-1a-ttr-1-description{
  font-size: 22px;
  line-height: 32px;
}
.ski-pass-25-26{
  font-size: 42px;
  line-height: 58px;
}
.new-year-tickets{
  font-size: 24px;
  line-height: 36px;
}
.frame-c{
  display: none;
}
.frame-1a{
  width: 410px;
  height: 178px;
  padding: 25px 36px;
  gap: 10px;
}
.resort-arsenev{
  font-size: 34px;
  line-height: 48px;
  height: unset;
}
.resort-description{
  width: 100%;
  height: unset;
  font-size: 14px;
  line-height: 18px;
}
.rectangle {
  width: 180px;
  height: unset;
  top: 37px;
  right: 20px;
  padding: 15px 15px;
}

.contact-info {
  font-size: 14px;
  top: 22px;
  left: 35px;
}

.frame {
  width: auto;
  gap: 30px;
  left: 120px;
}

.lifts-trails,
.events,
.cameras,
.ski-passes-goods {
  font-size: 14px;
}

.rectangle-3 {
  width: 90px;
  height: 28px;
}

.menu {
  font-size: 14px;
}

.rectangle-1 {
  height: 600px;
}

.image {
  height: 600px;
}

.flex-row-1b {
  padding: 30px 20px 0 20px;
}

.lifts-trails-1c {
  font-size: 36px;
  line-height: 48px;
}

.frame-1d {
  width: 220px;
  right: 20px;
}

.trails-routes {
  font-size: 32px;
  height: 40px;
}

.trails-routes-1e {
  font-size: 16px;
  width: 220px;
  height: unset;
  line-height: 18px;
}

.frame-20 {
  gap: 10px;
  row-gap: 10px;
}

.frame-21,
.frame-23,
.frame-25 {
  height: 50px;
  padding: 8px 40px;
  gap: 10px;
}

.eco-routes,
.lifts,
.trails {
  font-size: 20px;
}

.lifts-and-tracks {
  font-size: 14px;
  gap: 15px;
}

.highways-row {
  grid-template-columns: 20% 20% 20% 20% 20%;
  gap: 15px;
  padding: 0 20px;
}
.title{
  font-size: 16px;
}
.status{
  font-size: 16px;
}
.difficulty{
  font-size: 16px;
}
.length{
  font-size: 16px;
}
.elevation-changes{
  font-size: 16px;
}
.flex-row-29 {
  padding: 20px 20px 0 20px;
}

/* Адаптивные стили для блока тарифов на главной странице (планшеты) */
.main-tariffs-section {
  padding: 30px 20px;
}

.main-tariffs-block {
  padding: 20px 25px;
}

.main-tariffs-header {
  margin-bottom: 15px;
  padding-bottom: 12px;
}

.main-tariffs-title {
  font-size: 22px;
}

.main-tariffs-content {
  gap: 12px;
}

.main-tariffs-subtitle {
  font-size: 18px;
  margin-bottom: 8px;
}

.main-tariffs-text {
  font-size: 16px;
}

.main-tariffs-list {
  gap: 6px;
}

.main-tariffs-list li {
  font-size: 16px;
  padding-left: 22px;
}

.main-tariffs-notice {
  padding: 12px;
}

.main-tariffs-notice-text {
  font-size: 15px;
}

.frame-ee {
  padding: 20px;
}

.events-title {
  font-size: 32px;
}

.events-description {
  font-size: 16px;
}

.ski-passes-tickets {
  font-size: 32px;
  margin: 80px 0 0 30px;
}

.frame-6f {
  padding: 0 20px;
}

.flex-row-a {
  font-size: 32px;
  margin: 80px 0 0 30px;
}

.resort-map-title {
  font-size: 32px;
  margin: 80px 0 0 30px;
}

.resort-map-container {
  padding: 0 20px;
}

.frame-f6{
  padding: 0 20px 0 20px;
}
.events-slider-track{
  padding-left: 0;
}
.frame-f1{
  width: 40vw;
}
.frame-f0{
  padding-left: 35px;
}
.rectangle-ec{
  display: none;
}
.rectangle-ed{
  display: none;
}

/* Секции камер для 1024px */
.frame-49 {
  width: 100%;
  margin: 80px 0 0 0;
  padding: 0 30px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.frame-4a {
  width: auto;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.frame-4b {
  width: auto;
  gap: 12px;
}

.ellipse {
  width: 22px;
  height: 22px;
}

.resort-live {
  font-size: 36px;
  line-height: 48px;
  width: auto;
  height: auto;
}

.frame-4c {
  width: auto;
  gap: 10px;
}

.frame-4d {
  width: 40px;
  height: 40px;
}

.webcams {
  font-size: 20px;
  line-height: 24px;
  width: auto;
  height: auto;
}

.arrows-events {
  width: auto;
  justify-content: flex-end;
  gap: 15px;
  flex-shrink: 0;
}

.group-4e,
.group-4f {
  width: 60px;
  height: 60px;
  cursor: pointer;
}

.video.cameras-slider {
  width: 100%;
  margin: 30px 0 0 0;
  padding: 0 30px;
}

.cameras-track {
  padding-left: 0;
  gap: 20px;
}

.camera-item {
  min-width: 280px;
  width: 280px;
}

.camera-item .image-52 {
  width: 280px;
  height: 187px;
}

.camera-item .video-51 {
  width: 280px;
  height: 187px;
}

.camera-item .polygon {
  width: 44px;
  height: 40px;
  margin: 73px 0 0 118px;
}

.frame-53 {
  width: 100%;
  padding: 10px 0;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.camera-1 {
  font-size: 18px;
  line-height: 22px;
}

.length-54 {
  font-size: 16px;
  line-height: 20px;
}
}

/* Мобильные устройства (до 768px) */
@media (max-width: 768px) {
.flex-row-d {
  padding: 15px 15px 0 15px;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.rectangle {
  position: absolute;
  width: unset;
  height: 40px;
  margin-bottom: 0;
  right: 0;
  top: 55px;
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-radius: 5px;
}

.page-header-wrapper .image-2{
  top: 0;
  z-index: 1002;
  left: 0;
}
.page-header-wrapper .events{
  color: white;
}
.cameras{
  display: none;
}
.page-header-wrapper .cameras{
  color: white;
}
.page-header-wrapper .rectangle{
  right: -4px;
  top: 12px;
}

.contact-info {
  position: relative;
  top: 0;
  left: 0;
  width: unset;
  text-align: center;
  padding: 0;
  font-size: 14px;
}

.flex-row.spec-nagition {
  width: 100%;
  position: relative;
  top: 0;
  height: unset;
  margin: 0;
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.image-2 {
  width: 70px;
  height: 40px;
  position: absolute;
  margin-bottom: 0px;
  top: 45px;
  left: 10px;
}

.frame {
  position: relative;
  width: 100%;
  left: 0;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.lifts-trails,
.events,
.cameras,
.ski-passes-goods {
  font-size: 13px;
  padding: 8px 12px;
  color: #000000;
  width: unset;
  height: unset;
}

.rectangle-3 {
  width: 100px;
  height: 35px;
  background: #00868b;
  border-radius: 5px;
}
.image-4{
  background: url(/assets/icons/menu_w.svg) no-repeat center;
}

.menu {
  font-size: 13px;
  color: white;
}

.menu-dropdown {
  left: 0;
  width: 92vw;
  max-width: 100vw;
  padding: 20px 15px;
  max-height: 80vh;
  overflow-y: scroll;
}

.menu-dropdown-content {
  flex-direction: column;
  gap: 20px;
  max-width: 100%;
}

.menu-dropdown-category {
  max-width: 100%;
  min-width: 0;
}

.menu-dropdown-category-title {
  font-size: 18px;
}

.menu-dropdown-page-link {
  font-size: 14px;
}
.main-slider-nav{
  padding: 0 10px;
  top: 30%;
}
.new-year-tickets {
  font-size: 14px;
  line-height: 16px;
}
.flex-row-eb{
  margin: 28% 0 0 0;
}
.frame-5{
  width: 70%;
}
.ski-pass-25-26 {
  font-size: 26px;
      line-height: 28px;
}
.group{
  width: 24px;
  height: 24px;
}
.group-7{
  width: 24px;
  height: 24px;
}

.rectangle-1 {
  height: 500px;
}

.image {
  height: 500px;
}

.frame-8 {
  padding: 8px 15px;
      bottom: 10px;
      width: 87.4vw;
  right: unset;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-radius: 5px;
  left: 2.2vw;
}
.page-header-wrapper{
  padding: 15px;
}
.group-d{
  display: flex;
  background: #fffffff2;
  height: unset;
  width: unset;
  padding: 8px 15px;
  border-radius: 5px;
  align-items: center;
  gap: 8px;
}
.page-header-wrapper .ski-passes-goods{
  display: none;
}
.frame-e{
  margin: 0;
}
.frame-f{
  margin: 0;
  gap: 0;
}
.rectangle-12{
  display: none;
}
.group-13{
  display: none;
  background: #fffffff2;
  height: unset;
  width: unset;
  padding: 8px 15px;
  border-radius: 5px;
  align-items: center;
  gap: 8px;
}
.frame-14{
  margin: 0;
}
.frame-15{

  margin: 0;
  gap: 0;
}
.frame-c{
  display: flex;
}
.rectangle-19{
  display: none;
}

.weather {
  font-size: 14px;
  height: unset;
}

.temperature {
  font-size: 22px;
  height: unset;
  position: relative;
  line-height: 22px;
}

.sunny {
  font-size: 12px;
  height: unset;
}
.frame-9{
  gap: 0;
}

.wind-speed,
.visibility {
  font-size: 16px;
}

.frame-1a {
  padding: 20px 15px;
  width: 90%;
  left: 5%;
  height: unset;
  gap: 0px;
  border-radius: 5px 5px 0 0;
  padding-top: 10px;
  bottom: -2px;
}

.resort-arsenev {
  font-size: 22px;
}

.resort-description {
  font-size: 14px;
  line-height: 16px;
}

.flex-row-1b {
  padding: 30px 15px 0 15px;
  height: auto;
}

.chatgpt-image {
  display: none;
}

.lifts-trails-1c {
  font-size: 22px;
  line-height: 36px;
  margin-bottom: 20px;
}

.frame-1d {
  display: none;
}

.trails-routes {
  font-size: 24px;
  height: auto;
  text-align: center;
  line-height: 26px;
}

.trails-routes-1e {
  font-size: 14px;
  width: 100%;
  text-align: center;
  line-height: 14px;
}

.frame-1f {
  gap: 20px;
}

.frame-20 {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.highway-filter-btn {
  width: 100%;
}

.frame-21,
.frame-23,
.frame-25 {
  width: 100%;
  height: 50px;
  padding: 10px 20px;
  justify-content: flex-start;
  box-shadow: 1px 1px 4px 0px #0000001c;
  border: unset;
}

.eco-routes,
.lifts,
.trails {
  font-size: 18px;
}

.frame-27 {
  margin: 15px 0;
}

.lifts-and-tracks {
  display: none;
}

.flex-row-29 {
  padding: 15px 15px 0 15px;
  gap: 10px;
}

/* Адаптивные стили для блока тарифов на главной странице (мобильные) */
.main-tariffs-section {
  padding: 25px 15px;
}

.main-tariffs-block {
  padding: 20px;
}

.main-tariffs-header {
  margin-bottom: 15px;
  padding-bottom: 12px;
}

.main-tariffs-title {
  font-size: 20px;
}

.main-tariffs-content {
  gap: 12px;
}

.main-tariffs-subtitle {
  font-size: 17px;
  margin-bottom: 8px;
}

.main-tariffs-text {
  font-size: 15px;
  line-height: 1.4;
}

.main-tariffs-list {
  gap: 6px;
}

.main-tariffs-list li {
  font-size: 15px;
  padding-left: 22px;
  line-height: 1.4;
}

.main-tariffs-list li::before {
  left: 6px;
  font-size: 18px;
}

.main-tariffs-notice {
  padding: 12px;
}

.main-tariffs-notice-text {
  font-size: 14px;
  line-height: 1.4;
}

.highways-row {
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: none;
  box-shadow: 1px 1px 3px 1px #00000012;
  padding: 15px 25px;
  margin-bottom: 10px;
  border-radius: 15px;
}

.highways-row-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding: 10px 0;
}

.highways-row-item-row {
  flex-direction: row;
  align-items: center;
}
.frame-d1{
  width: 90vw;
  top: 20px;
}
.highways-row-divider {
  display: none;
}
.highways-row-item-mobile{
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: right;
}
.highways-row-item-non-mobile{
  display: none;
}

.track-1 {
  font-size: 16px;
  font-weight: 600;
}

.menu-d6, .services, .frame-dd{
  width: 30vw;
}

.frame-d5{
  row-gap: 55px;
  padding: 30px 20px;
}
.services-da, .business-de, .partnership-e1, .menu-item{
  font-size: 18px;
  line-height: 22px;
}
.rectangle-e4{
  height: unset;
  flex-direction: column;
  padding: 25px 20px;
  gap: 30px;
  text-align: center;
}
.copyright{
  width: unset;
  height: unset;
  text-align: center;
}
.articles-grid{
  gap: 15px;
}

.open,
.closed {
  font-size: 14px;
  border: 1px solid;
  padding: 5px 10px;
  height: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  width: 50%;
  text-align: right;
  align-self: flex-end;
}

.easy,
.average,
.difficult {
  font-size: 14px;
}

.length-3c,
.elevation-changes-41 {
  font-size: 12px;
  text-align: right;
}

.flex-row-eed {
  padding: 20px 15px;
}

.frame-f6 {
  margin-top: 30px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}

.events-title {
  font-size: 22px;
  line-height: 32px;
  height: unset;
}
.frame-ee{
  height: 356px;
}
.events-slider-slide .image-f5{
  height: 356px;
}
.group-f3{
  width: 50px;
  height: 50px;
}
.group-f4{
  width: 50px;
  height: 50px;
}
.details-link{
  font-size: 16px;
  line-height: 16px;
}
.announcement-date{
  height: unset;
  font-size: 18px;
  line-height: 18px;
}
.announcement{
  font-size: 22px;
  font-weight: 600;
  height: unset;
  line-height: 28px;
}

.events-description {
  font-size: 14px;
}

.frame-e6,
.frame-e7,
.frame-e8,
.frame-e9,
.frame-ea,
.frame-eb {
  display: none;
}
.articles-grid {
  grid-template-columns: 1fr;
  gap: 30px;
}
.frame-ee {
  padding: 15px;
      margin-top: 0;
      padding-top: 0;
}

.events-slider-track {
  padding-left: 0;
}

.events-slider-slide {
  width: 100%;
  max-width: 100%;
}

.frame-49 {
  width: 100%;
  margin: 60px 0 0 0;
  padding: 0 20px;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.frame-4a {
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.page-header-bg{
  min-height: 230px;
  height: 230px;
}
.frame-4b {
  width: unset;
  gap: 10px;
}

.ellipse {
  width: 20px;
  height: 20px;
}

.resort-live {
  font-size: 22px;
  line-height: 28px;
  width: auto;
  height: auto;
}

.frame-4c {
  width: unset;
  gap: 8px;
  display: none;
}

.frame-4d {
  width: 35px;
  height: 35px;
}

.webcams {
  font-size: 18px;
  line-height: 22px;
  width: auto;
  height: auto;
}

.arrows-events {
  width: unset;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 10px;
}

.group-4e,
.group-4f {
  width: 35px;
  height: 35px;
  cursor: pointer;
}

.video.cameras-slider {
  width: 100%;
  margin: 20px 0 0 0;
  padding: 0 20px;
}

.cameras-track {
  padding-left: 0;
  gap: 15px;
}

.camera-item {
  min-width: 250px;
  width: 250px;
}

.camera-item .image-52 {
  width: 250px;
  height: 167px;
}

.camera-item .video-51 {
  width: 250px;
  height: 167px;
}

.camera-item .polygon {
  width: 40px;
  height: 36px;
  margin: 65px 0 0 105px;
}

.frame-53 {
  width: 100%;
  padding: 8px 0;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.camera-1 {
  font-size: 16px;
  line-height: 20px;
}

.frame-cf{
  padding: 0 20px;
  height: unset;
  top: -30px;
  position: relative;
}
.image-d2, .image-d3{
  width: 30px;
  height: 30px;
}
.flex-row-ca{
  height: 185px;
}
.length-54 {
  font-size: 14px;
  line-height: 18px;
}

.ski-passes-tickets {
  font-size: 22px;
  padding: 0 15px;
  margin: 30px 0 20px 0;
  line-height: 24px;
  height: unset;
}
.ski-passes-slider-slide .image-75{
  height: 50vh;
}
.group-72{
  width: 50px;
  height: 50px;
}
.group-73{
  width: 50px;
  height: 50px;
}

.frame-6f {
  padding: 0 15px;
}

.frame-70 {
  flex-direction: row;
  gap: 10px;
}

.logo{
  width: 80px;
  min-width: 80px;
  height: 80px;
}

.frame-71 {
  justify-content: center;
      width: 15vw;
      gap: 15px;
}
.ruble{
  font-size: 14px;
  line-height: 14px;
  left: 0px;
  top: 2px;
}
.frame-7f{
  font-size: 16px;
  line-height: 16px;
}
.ruble-83{
  font-size: 14px;
  line-height: 14px;
  left: 0px;
  top: 2px;
}
.frame-85{
  font-size: 16px;
  line-height: 16px;
}
.adult{
  font-size: 16px;
  line-height: 18px;
}
.child{
  font-size: 16px;
  line-height: 18px;
}
.ski-pass-10-days{
  font-size: 22px;
  height: unset;
}

.ski-passes-slider-track-wrapper {
  order: 1;
}

.ski-passes-slider-track {
  gap: 10px;
}

.frame-74 {
  min-width: 76vw;
  width: 76vw;
}

.flex-row-a {
  font-size: 22px;
  padding: 0 15px;
  margin: 30px 0 20px 0;
  height: unset;
  line-height: 24px;
}

.resort-map-title {
  font-size: 22px;
  padding: 0 15px;
  margin: 30px 0 20px 0;
  height: unset;
  line-height: 24px;
}
.frame-1a-ttr-1{
  left: 6.2vw;
  bottom: 88px;
  width: 87.4vw;
  padding: 8px 15px;
  border-radius: 5px;
  gap: 0;
}
.frame-1a-ttr-1-title{
  font-size: 12px;
}
.frame-1a-ttr-1-description{
  font-size: 18px;
  line-height: 28px;
}
.resort-map-container {
  padding: 0 15px;
  margin: 0 0 20px 0;
}

.resort-map-image {
  border-radius: 10px;
}

.image-viewer-modal {
  padding: 10px;
}

.image-viewer-content {
  max-width: 100%;
  max-height: 100vh;
  padding: 40px 10px 10px 10px;
}

.image-viewer-img {
  max-height: 90vh;
  border-radius: 4px;
}

.image-viewer-close {
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
}

.image-viewer-close svg {
  width: 20px;
  height: 20px;
}

.image-c7.blog-slider {
  padding: 0 15px;
}
.image-c7{
  height: unset;
}
.phone-number{
  height: unset;
  font-size: 16px;
  line-height: 18px;
}
.address{
  height: unset;
  font-size: 16px;
  line-height: 18px;
          max-width: 50%;
}
.frame-d0{
        width: 50%;
  max-width: 50%;
}
.email{
  height: unset;
  font-size: 16px;
  line-height: 18px;
}

.frame-c8 {
  height: 400px;
}

.restaurant {
  padding: 20px;
  width: 100%;
  height: unset;
  gap: 8px;
}
.group-c9{
  gap: 15px;
  width: 70px;
  height: 135px;
}
.group-ca{
  width: 32px;
  height: 32px;
}
.frame-cb{
  width: 32px;
  height: 32px;
}

.welcome {
  font-size: 20px;
}

.details {
  font-size: 14px;
}

.text-5f {
  font-size: 14px;
}
.group-b{
  height: unset;
  flex-shrink: unset;
}
.frame-a{
  flex-shrink: unset;
  align-self: unset;
  gap: 0;
}
.articles-nav-btn {
  width: 50px;
  height: 50px;
}

.articles-nav-btn img {
    width: 50px;
    height: 50px;
}
.article-gallery-nav-btn img{
  width: 50px;
    height: 50px;
}
}



/* ========== АНИМАЦИИ ПРИ СКРОЛЛЕ ========== */

/* Базовые стили для анимируемых элементов */
.animate-fade-in,
.animate-slide-up,
.animate-slide-left,
.animate-slide-right {
opacity: 0;
transition: opacity 0.8s ease-out, transform 0.8s ease-out;
will-change: opacity, transform;
}

/* Анимация появления с затуханием */
.animate-fade-in {
opacity: 0;
}

.animate-fade-in.animated {
opacity: 1;
}

/* Анимация появления снизу */
.animate-slide-up {
opacity: 0;
transform: translateY(50px);
}

.animate-slide-up.animated {
opacity: 1;
transform: translateY(0);
}

/* Анимация появления слева */
.animate-slide-left {
opacity: 0;
transform: translateX(-50px);
}

.animate-slide-left.animated {
opacity: 1;
transform: translateX(0);
}

/* Анимация появления справа */
.animate-slide-right {
opacity: 0;
transform: translateX(50px);
}

.animate-slide-right.animated {
opacity: 1;
transform: translateX(0);
}

/* Анимация появления сверху */
.animate-slide-down {
opacity: 0;
transform: translateY(-30px);
}

.animate-slide-down.animated {
opacity: 1;
transform: translateY(0);
}

/* Анимация появления с масштабированием */
.animate-fade-scale {
opacity: 0;
transform: scale(0.8);
}

.animate-fade-scale.animated {
opacity: 1;
transform: scale(1);
}

/* Плавное появление для карточек трасс */
.highways-row.animate-fade-in {
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
transform: translateY(20px);
}

.highways-row.animate-fade-in.animated {
opacity: 1;
transform: translateY(0);
}

/* Плавное появление для карточек камер */
.camera-item.animate-fade-in {
transition: opacity 0.5s ease-out, transform 0.5s ease-out;
transform: scale(0.95);
}

.camera-item.animate-fade-in.animated {
opacity: 1;
transform: scale(1);
}

/* Плавное появление для карточек ски-пассов */
.ski-passes-slider-slide.animate-fade-in {
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
transform: scale(0.95);
}

.ski-passes-slider-slide.animate-fade-in.animated {
opacity: 1;
transform: scale(1);
}

/* Анимация для блока погоды */
.frame-8.animate-slide-left.animated {
opacity: 1;
transform: translateX(0);
}

/* Анимация для блока описания курорта */
.frame-1a.animate-slide-right.animated {
opacity: 1;
transform: translateX(0);
}

/* Анимация для блока описания курорта */
.frame-1a-ttr-1.animate-slide-right.animated {
  opacity: 1;
  transform: translateX(0);
  }

/* Анимация для навигации */
.rectangle.animate-slide-down.animated {
opacity: 1;
transform: translateY(0);
}

.flex-row.spec-nagition.animate-slide-down.animated {
opacity: 1;
transform: translateY(0);
}

/* Анимация для кнопок навигации слайдера баннеров */
.main-slider-nav.animate-fade-scale.animated {
opacity: 1;
transform: translateY(-50%) scale(1);
}

/* Анимация для футера */
.flex-row-ca.animate-slide-up.animated {
opacity: 1;
transform: translateY(0);
}

.frame-d1.animate-slide-up.animated {
opacity: 1;
transform: translateY(0);
}

.frame-d5.animate-slide-up.animated {
opacity: 1;
transform: translateY(0);
}

.rectangle-e4.animate-slide-up.animated {
opacity: 1;
transform: translateY(0);
}

/* Анимации для страниц событий/статей */
.articles-hero.animate-slide-up.animated {
opacity: 1;
transform: translateY(0);
}

.articles-featured.animate-slide-up.animated {
opacity: 1;
transform: translateY(0);
}

.articles-grid.animate-slide-up.animated {
opacity: 1;
transform: translateY(0);
}

.articles-card.animate-fade-in.animated {
opacity: 1;
transform: translateY(0);
}

/* Анимации для страницы LIVE */
.live-hero.animate-slide-up.animated {
opacity: 1;
transform: translateY(0);
}

.live-content.animate-slide-up.animated {
opacity: 1;
transform: translateY(0);
}

.live-sidebar.animate-slide-left.animated {
opacity: 1;
transform: translateX(0);
}

.live-player.animate-slide-right.animated {
opacity: 1;
transform: translateX(0);
}

/* Анимации для страниц отдельных статей/событий */
.article-main.animate-slide-up.animated {
opacity: 1;
transform: translateY(0);
}

.article-breadcrumbs.animate-slide-down.animated {
opacity: 1;
transform: translateY(0);
}

.article-title.animate-slide-up.animated {
opacity: 1;
transform: translateY(0);
}

.article-content-wrapper.animate-slide-up.animated {
opacity: 1;
transform: translateY(0);
}

.article-gallery.animate-slide-up.animated {
opacity: 1;
transform: translateY(0);
}

/* Анимации для страницы каталога */
.catalog-hero.animate-slide-up.animated {
opacity: 1;
transform: translateY(0);
}

.catalog-filters-section.animate-slide-up.animated {
opacity: 1;
transform: translateY(0);
}

.catalog-products.animate-slide-up.animated {
opacity: 1;
transform: translateY(0);
}

.catalog-product.animate-fade-in.animated {
opacity: 1;
transform: translateY(0);
}

/* Отключение анимаций для пользователей, предпочитающих уменьшенное движение */
@media (prefers-reduced-motion: reduce) {
.animate-fade-in,
.animate-slide-up,
.animate-slide-left,
.animate-slide-right,
.animate-slide-down,
.animate-fade-scale,
.highways-row.animate-fade-in,
.camera-item.animate-fade-in,
.ski-passes-slider-slide.animate-fade-in,
.frame-8.animate-slide-left,
.frame-1a.animate-slide-right,
.frame-1a-ttr-1.animate-slide-right,
.rectangle.animate-slide-down,
.flex-row.spec-nagition.animate-slide-down,
.flex-row-ca.animate-slide-up,
.frame-d1.animate-slide-up,
.frame-d5.animate-slide-up,
.rectangle-e4.animate-slide-up,
.main-slider-nav.animate-fade-scale,
.articles-hero.animate-slide-up,
.articles-featured.animate-slide-up,
.articles-grid.animate-slide-up,
.articles-card.animate-fade-in,
.live-hero.animate-slide-up,
.live-content.animate-slide-up,
.live-sidebar.animate-slide-left,
.live-player.animate-slide-right,
.article-main.animate-slide-up,
.article-breadcrumbs.animate-slide-down,
.article-title.animate-slide-up,
.article-content-wrapper.animate-slide-up,
.article-gallery.animate-slide-up,
.catalog-hero.animate-slide-up,
.catalog-filters-section.animate-slide-up,
.catalog-products.animate-slide-up,
.catalog-product.animate-fade-in {
  opacity: 1;
  transform: none;
  transition: none;
}
}